[libcxx-commits] [libcxx] 3d8f205 - [libc++] Move the debug_level feature to the DSL
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Apr 21 14:57:25 PDT 2021
Author: Louis Dionne
Date: 2021-04-21T17:57:16-04:00
New Revision: 3d8f2059b95d3e9d6785255949283b258d7ca121
URL: https://github.com/llvm/llvm-project/commit/3d8f2059b95d3e9d6785255949283b258d7ca121
DIFF: https://github.com/llvm/llvm-project/commit/3d8f2059b95d3e9d6785255949283b258d7ca121.diff
LOG: [libc++] Move the debug_level feature to the DSL
Added:
Modified:
libcxx/utils/libcxx/test/config.py
libcxx/utils/libcxx/test/params.py
Removed:
################################################################################
diff --git a/libcxx/utils/libcxx/test/config.py b/libcxx/utils/libcxx/test/config.py
index 3c0cb096c6b29..54e67ec7f4d99 100644
--- a/libcxx/utils/libcxx/test/config.py
+++ b/libcxx/utils/libcxx/test/config.py
@@ -130,7 +130,6 @@ def configure(self):
self.configure_compile_flags()
self.configure_link_flags()
self.configure_env()
- self.configure_debug_mode()
self.configure_sanitizer()
self.configure_coverage()
self.configure_modules()
@@ -473,15 +472,6 @@ def configure_extra_library_flags(self):
self.cxx.link_flags += ['-lc++external_threads']
self.target_info.add_cxx_link_flags(self.cxx.link_flags)
- def configure_debug_mode(self):
- debug_level = self.get_lit_conf('debug_level', None)
- if not debug_level:
- return
- if debug_level not in ['0', '1']:
- self.lit_config.fatal('Invalid value for debug_level "%s".'
- % debug_level)
- self.cxx.compile_flags += ['-D_LIBCPP_DEBUG=%s' % debug_level]
-
def configure_sanitizer(self):
san = self.get_lit_conf('use_sanitizer', '').strip()
if san:
diff --git a/libcxx/utils/libcxx/test/params.py b/libcxx/utils/libcxx/test/params.py
index c6b47972a35ab..9d1d83a7b9c70 100644
--- a/libcxx/utils/libcxx/test/params.py
+++ b/libcxx/utils/libcxx/test/params.py
@@ -99,6 +99,13 @@ def getStdFlag(cfg, std):
AddCompileFlag('-D_LIBCPP_DISABLE_AVAILABILITY')
]),
+ Parameter(name='debug_level', choices=['', '0', '1'], type=str, default='',
+ help="The debugging level to enable in the test suite.",
+ actions=lambda debugLevel: [] if debugLevel is '' else [
+ AddFeature('debug_level={}'.format(debugLevel)),
+ AddCompileFlag('-D_LIBCPP_DEBUG={}'.format(debugLevel))
+ ]),
+
# Parameters to enable or disable parts of the test suite
Parameter(name='enable_experimental', choices=[True, False], type=bool, default=False,
help="Whether to enable tests for experimental C++ libraries (typically Library Fundamentals TSes).",
More information about the libcxx-commits
mailing list