[libcxx-commits] [libcxxabi] abcb9bb - [libc++abi] Remove unused lit feature
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Thu Mar 26 10:15:07 PDT 2020
Author: Louis Dionne
Date: 2020-03-26T13:14:51-04:00
New Revision: abcb9bb742c9f9fba3b71355b14c0cdcf2893ab0
URL: https://github.com/llvm/llvm-project/commit/abcb9bb742c9f9fba3b71355b14c0cdcf2893ab0
DIFF: https://github.com/llvm/llvm-project/commit/abcb9bb742c9f9fba3b71355b14c0cdcf2893ab0.diff
LOG: [libc++abi] Remove unused lit feature
Added:
Modified:
libcxxabi/test/libcxxabi/test/config.py
Removed:
################################################################################
diff --git a/libcxxabi/test/libcxxabi/test/config.py b/libcxxabi/test/libcxxabi/test/config.py
index 32b2f74357ba..5f652c2f00c0 100644
--- a/libcxxabi/test/libcxxabi/test/config.py
+++ b/libcxxabi/test/libcxxabi/test/config.py
@@ -42,9 +42,6 @@ def configure_features(self):
self.config.available_features.add('libcxxabi-no-exceptions')
if not self.has_cpp_feature('noexcept_function_type', 201510):
self.config.available_features.add('libcxxabi-no-noexcept-function-type')
- # test_exception_storage_nodynmem.pass.cpp fails under this specific configuration
- if self.get_lit_bool('cxx_ext_threads', False) and self.get_lit_bool('libcxxabi_shared', False):
- self.config.available_features.add('libcxxabi-shared-externally-threaded')
if not self.get_lit_bool('llvm_unwinder', False):
self.config.available_features.add('libcxxabi-has-system-unwinder')
@@ -61,7 +58,7 @@ def configure_compile_flags(self):
self.cxx.compile_flags += ['-D_LIBCXXABI_HAS_NO_THREADS']
self.config.available_features.add('libcxxabi-no-threads')
super(Configuration, self).configure_compile_flags()
-
+
def configure_compile_flags_header_includes(self):
self.configure_config_site_header()
cxx_headers = self.get_lit_conf(
More information about the libcxx-commits
mailing list