From: Louis Dionne Date: Wed, 29 Apr 2020 15:30:37 +0000 (-0400) Subject: [libc++] Try re-enabling DSL test on Windows X-Git-Tag: llvmorg-12-init~7199 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cd05707d08b192b579692e66071c883a535fa7c5;p=platform%2Fupstream%2Fllvm.git [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. --- diff --git a/libcxx/test/libcxx/selftest/dsl/dsl.sh.py b/libcxx/test/libcxx/selftest/dsl/dsl.sh.py index 2f0e737..abb4d92 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 93e9f8d..c61f46f 100644 --- a/libcxx/utils/libcxx/test/config.py +++ b/libcxx/utils/libcxx/test/config.py @@ -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++':