diff options
-rw-r--r-- | libcxx/test/libcxx/test/config.py | 1 | ||||
-rw-r--r-- | libcxx/test/libcxx/version.pass.cpp | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/libcxx/test/libcxx/test/config.py b/libcxx/test/libcxx/test/config.py index 4e989b84c16..6549324682a 100644 --- a/libcxx/test/libcxx/test/config.py +++ b/libcxx/test/libcxx/test/config.py @@ -290,6 +290,7 @@ class Configuration(object): # XFAIL markers for tests that are known to fail with versions of # libc++ as were shipped with a particular triple. if self.use_system_cxx_lib: + self.config.available_features.add('with_system_cxx_lib') self.config.available_features.add( 'with_system_cxx_lib=%s' % self.config.target_triple) diff --git a/libcxx/test/libcxx/version.pass.cpp b/libcxx/test/libcxx/version.pass.cpp index 8a29c5bcd36..a9e8c347881 100644 --- a/libcxx/test/libcxx/version.pass.cpp +++ b/libcxx/test/libcxx/version.pass.cpp @@ -8,6 +8,8 @@ // //===----------------------------------------------------------------------===// +// UNSUPPORTED: with_system_cxx_lib + // Test the _LIBCPP_VERSION and _LIBCPP_LIBRARY_VERSION macros #include <__config> |