[libc++] Re-disable DSL test on Windows
authorLouis Dionne <ldionne@apple.com>
Wed, 29 Apr 2020 18:19:27 +0000 (14:19 -0400)
committerLouis Dionne <ldionne@apple.com>
Wed, 29 Apr 2020 18:21:04 +0000 (14:21 -0400)
This reverts commit 51a60ed14c4e, since the test still doesn't pass on
Windows. Marking the test as UNSUPORTED on Windows again until I've
figured out the problem.

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

index f357b5d..a96ae90 100644 (file)
@@ -6,6 +6,9 @@
 #
 #===----------------------------------------------------------------------===##
 
+# TODO: Unbreak this on Windows
+# UNSUPPORTED: host-windows
+
 # RUN: %{python} '%s' '%S' '%T' '%{escaped_exec}' \
 # RUN:                          '%{escaped_cxx}' \
 # RUN:                          '%{escaped_flags}' \
index 225dadb..9309053 100644 (file)
@@ -425,6 +425,9 @@ class Configuration(object):
                 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++':