From 6454140ab34cb29cc0b9de4f1e80199d717f1a97 Mon Sep 17 00:00:00 2001 From: Louis Dionne Date: Tue, 8 Sep 2020 11:17:10 -0400 Subject: [PATCH] [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. --- libcxx/utils/libcxx/test/config.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libcxx/utils/libcxx/test/config.py b/libcxx/utils/libcxx/test/config.py index d54ee8f..82b696f 100644 --- a/libcxx/utils/libcxx/test/config.py +++ b/libcxx/utils/libcxx/test/config.py @@ -148,6 +148,8 @@ class Configuration(object): 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' % -- 2.7.4