[libcxx-commits] [libcxx] 6454140 - [libc++] Make sure we always print all available features

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Tue Sep 8 08:18:12 PDT 2020


Author: Louis Dionne
Date: 2020-09-08T11:18:02-04:00
New Revision: 6454140ab34cb29cc0b9de4f1e80199d717f1a97

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

LOG: [libc++] Make sure we always print all available features

Previously, we'd only print the features added through the new config,
however printing all the features is important for debugging purposes.

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/libcxx/utils/libcxx/test/config.py b/libcxx/utils/libcxx/test/config.py
index d54ee8fa3291..82b696f76eec 100644
--- a/libcxx/utils/libcxx/test/config.py
+++ b/libcxx/utils/libcxx/test/config.py
@@ -148,6 +148,8 @@ def configure(self):
             self.lit_config
         )
 
+        self.lit_config.note("All available features: {}".format(self.config.available_features))
+
     def print_config_info(self):
         if self.cxx.use_modules:
             self.lit_config.note('Using modules flags: %s' %


        


More information about the libcxx-commits mailing list