From: Louis Dionne Date: Tue, 28 Apr 2020 17:09:21 +0000 (-0400) Subject: [libc++] Temporarily disable test that fails on Windows X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=707df4acdc5fa607af4cd9d4106c423ae0f5ba21;p=platform%2Fupstream%2Fllvm.git [libc++] Temporarily disable test that fails on Windows --- diff --git a/libcxx/test/libcxx/selftest/dsl/dsl.sh.py b/libcxx/test/libcxx/selftest/dsl/dsl.sh.py index f0cf018..a96ae90 100644 --- a/libcxx/test/libcxx/selftest/dsl/dsl.sh.py +++ b/libcxx/test/libcxx/selftest/dsl/dsl.sh.py @@ -7,7 +7,7 @@ #===----------------------------------------------------------------------===## # TODO: Unbreak this on Windows -# UNSUPPORTED: windows +# UNSUPPORTED: host-windows # RUN: %{python} '%s' '%S' '%T' '%{escaped_exec}' \ # RUN: '%{escaped_cxx}' \ diff --git a/libcxx/utils/libcxx/test/config.py b/libcxx/utils/libcxx/test/config.py index 225dadb..9309053 100644 --- a/libcxx/utils/libcxx/test/config.py +++ b/libcxx/utils/libcxx/test/config.py @@ -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++':