[libc++] The enable_experimental Lit feature should be False by default

This preserves existing behavior before f5f58f1f733b.
This commit is contained in:
Louis Dionne 2020-07-09 14:21:24 -04:00
parent c282708316
commit cfb3675410

View File

@ -34,7 +34,7 @@ parameters = [
feature=lambda filesystem: None if filesystem else
Feature(name='c++filesystem-disabled')),
Parameter(name='enable_experimental', choices=[True, False], type=bool, default=True,
Parameter(name='enable_experimental', choices=[True, False], type=bool, default=False,
help="Whether to enable tests for experimental C++ libraries (typically Library Fundamentals TSes).",
feature=lambda experimental: None if not experimental else
Feature(name='c++experimental', linkFlag='-lc++experimental')),