[libcxx-commits] [libcxx] cd05707 - [libc++] Try re-enabling DSL test on Windows

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Fri May 1 11:29:49 PDT 2020


Author: Louis Dionne
Date: 2020-05-01T14:29:37-04:00
New Revision: cd05707d08b192b579692e66071c883a535fa7c5

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

LOG: [libc++] Try re-enabling DSL test on Windows

The issues we were seeing before should have been fixed, but it's hard
to say for sure without running through the bots again.

Added: 
    

Modified: 
    libcxx/test/libcxx/selftest/dsl/dsl.sh.py
    libcxx/utils/libcxx/test/config.py

Removed: 
    


################################################################################
diff  --git a/libcxx/test/libcxx/selftest/dsl/dsl.sh.py b/libcxx/test/libcxx/selftest/dsl/dsl.sh.py
index 2f0e73715194..abb4d9215c12 100644
--- a/libcxx/test/libcxx/selftest/dsl/dsl.sh.py
+++ b/libcxx/test/libcxx/selftest/dsl/dsl.sh.py
@@ -6,9 +6,6 @@
 #
 #===----------------------------------------------------------------------===##
 
-# TODO: Unbreak this on Windows
-# UNSUPPORTED: host-windows
-
 # RUN: %{python} %s %S %T %{escaped_exec} \
 # RUN:                    %{escaped_cxx} \
 # RUN:                    %{escaped_flags} \

diff  --git a/libcxx/utils/libcxx/test/config.py b/libcxx/utils/libcxx/test/config.py
index 93e9f8d6fe94..c61f46f749de 100644
--- a/libcxx/utils/libcxx/test/config.py
+++ b/libcxx/utils/libcxx/test/config.py
@@ -414,9 +414,6 @@ def configure_features(self):
                 intMacroValue(macros['__cpp_concepts']) < 201811:
             self.config.available_features.add('libcpp-no-concepts')
 
-        if sys.platform.lower().strip() == 'win32':
-            self.config.available_features.add('host-windows')
-
         if self.target_info.is_windows():
             self.config.available_features.add('windows')
             if self.cxx_stdlib_under_test == 'libc++':


        


More information about the libcxx-commits mailing list