[libc++] Try re-enabling DSL test on Windows
authorLouis Dionne <ldionne@apple.com>
Wed, 29 Apr 2020 15:30:37 +0000 (11:30 -0400)
committerLouis Dionne <ldionne@apple.com>
Fri, 1 May 2020 18:29:37 +0000 (14:29 -0400)
The issues we were seeing before should have been fixed, but it's hard
to say for sure without running through the bots again.

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

index 2f0e737..abb4d92 100644 (file)
@@ -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} \
index 93e9f8d..c61f46f 100644 (file)
@@ -414,9 +414,6 @@ 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++':