[libcxx-commits] [libcxx] cfb3675 - [libc++] The enable_experimental Lit feature should be False by default

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Thu Jul 9 11:22:37 PDT 2020


Author: Louis Dionne
Date: 2020-07-09T14:21:24-04:00
New Revision: cfb36754108deae438c0b822f80cdbc7c1c26593

URL: https://github.com/llvm/llvm-project/commit/cfb36754108deae438c0b822f80cdbc7c1c26593
DIFF: https://github.com/llvm/llvm-project/commit/cfb36754108deae438c0b822f80cdbc7c1c26593.diff

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

This preserves existing behavior before f5f58f1f733b.

Added: 
    

Modified: 
    libcxx/utils/libcxx/test/params.py

Removed: 
    


################################################################################
diff  --git a/libcxx/utils/libcxx/test/params.py b/libcxx/utils/libcxx/test/params.py
index 01d412bf3f11..864a5108fc09 100644
--- a/libcxx/utils/libcxx/test/params.py
+++ b/libcxx/utils/libcxx/test/params.py
@@ -34,7 +34,7 @@
             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')),


        


More information about the libcxx-commits mailing list