[libcxx-commits] [PATCH] D102109: [libc++] Enable tests for the experimental library by default
Louis Dionne via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Sat May 8 09:05:25 PDT 2021
ldionne created this revision.
Herald added a subscriber: arichardson.
ldionne requested review of this revision.
Herald added a project: libc++.
Herald added a subscriber: libcxx-commits.
Herald added a reviewer: libc++.
This matches the fact that we build the experimental library by default.
Otherwise, by default we'd be building the library but not testing it,
which is inconsistent.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D102109
Files:
libcxx/utils/libcxx/test/params.py
Index: libcxx/utils/libcxx/test/params.py
===================================================================
--- libcxx/utils/libcxx/test/params.py
+++ libcxx/utils/libcxx/test/params.py
@@ -111,7 +111,7 @@
]),
# Parameters to enable or disable parts of the test suite
- Parameter(name='enable_experimental', choices=[True, False], type=bool, default=False,
+ Parameter(name='enable_experimental', choices=[True, False], type=bool, default=True,
help="Whether to enable tests for experimental C++ libraries (typically Library Fundamentals TSes).",
actions=lambda experimental: [] if not experimental else [
AddFeature('c++experimental'),
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D102109.343850.patch
Type: text/x-patch
Size: 700 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20210508/65ea0354/attachment.bin>
More information about the libcxx-commits
mailing list