[libc++] Temporarily disable test that fails on Windows
authorLouis Dionne <ldionne@apple.com>
Tue, 28 Apr 2020 17:09:21 +0000 (13:09 -0400)
committerLouis Dionne <ldionne@apple.com>
Tue, 28 Apr 2020 17:10:12 +0000 (13:10 -0400)
libcxx/test/libcxx/selftest/dsl/dsl.sh.py
libcxx/utils/libcxx/test/config.py

index f0cf018..a96ae90 100644 (file)
@@ -7,7 +7,7 @@
 #===----------------------------------------------------------------------===##
 
 # TODO: Unbreak this on Windows
-# UNSUPPORTED: windows
+# UNSUPPORTED: host-windows
 
 # RUN: %{python} '%s' '%S' '%T' '%{escaped_exec}' \
 # RUN:                          '%{escaped_cxx}' \
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++':