From 51a60ed14c4eb70ca8ca616280ae9d97e7eb9986 Mon Sep 17 00:00:00 2001 From: Louis Dionne Date: Wed, 29 Apr 2020 11:30:37 -0400 Subject: [PATCH] [libc++] Try re-enabling DSL test on Windows The issue we were seeing before should have been fixed by 178a0c80baab. --- libcxx/test/libcxx/selftest/dsl/dsl.sh.py | 3 --- libcxx/utils/libcxx/test/config.py | 3 --- 2 files changed, 6 deletions(-) diff --git a/libcxx/test/libcxx/selftest/dsl/dsl.sh.py b/libcxx/test/libcxx/selftest/dsl/dsl.sh.py index a96ae90b44bb..f357b5d7767b 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 93090530b738..225dadb5f02d 100644 --- a/libcxx/utils/libcxx/test/config.py +++ b/libcxx/utils/libcxx/test/config.py @@ -425,9 +425,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++': -- 2.34.1