[libcxx-commits] [libcxx] 51a60ed - [libc++] Try re-enabling DSL test on Windows
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Apr 29 08:32:42 PDT 2020
Author: Louis Dionne
Date: 2020-04-29T11:32:27-04:00
New Revision: 51a60ed14c4eb70ca8ca616280ae9d97e7eb9986
URL: https://github.com/llvm/llvm-project/commit/51a60ed14c4eb70ca8ca616280ae9d97e7eb9986
DIFF: https://github.com/llvm/llvm-project/commit/51a60ed14c4eb70ca8ca616280ae9d97e7eb9986.diff
LOG: [libc++] Try re-enabling DSL test on Windows
The issue we were seeing before should have been fixed by 178a0c80baab.
Added:
Modified:
libcxx/test/libcxx/selftest/dsl/dsl.sh.py
libcxx/utils/libcxx/test/config.py
Removed:
################################################################################
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 @@ def configure_features(self):
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++':
More information about the libcxx-commits
mailing list