Skip to content

Commit

Permalink
[libc++] Temporarily disable test that fails on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
ldionne committed Apr 28, 2020
1 parent efd1f17 commit 707df4a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion libcxx/test/libcxx/selftest/dsl/dsl.sh.py
Expand Up @@ -7,7 +7,7 @@
#===----------------------------------------------------------------------===##

# TODO: Unbreak this on Windows
# UNSUPPORTED: windows
# UNSUPPORTED: host-windows

# RUN: %{python} '%s' '%S' '%T' '%{escaped_exec}' \
# RUN: '%{escaped_cxx}' \
Expand Down
3 changes: 3 additions & 0 deletions libcxx/utils/libcxx/test/config.py
Expand Up @@ -425,6 +425,9 @@ 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++':
Expand Down

0 comments on commit 707df4a

Please sign in to comment.