diff options
Diffstat (limited to 'libcxx/test/std/thread/thread.threads')
-rw-r--r-- | libcxx/test/std/thread/thread.threads/thread.thread.this/sleep_for.pass.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libcxx/test/std/thread/thread.threads/thread.thread.this/sleep_for.pass.cpp b/libcxx/test/std/thread/thread.threads/thread.thread.this/sleep_for.pass.cpp index 27e1d2a1d42..f7a91860700 100644 --- a/libcxx/test/std/thread/thread.threads/thread.thread.this/sleep_for.pass.cpp +++ b/libcxx/test/std/thread/thread.threads/thread.thread.this/sleep_for.pass.cpp @@ -9,6 +9,15 @@ // // UNSUPPORTED: libcpp-has-no-threads +// This test depends on signal behaviour until r210210, so some system libs +// don't pass. +// +// XFAIL: with_system_cxx_lib=macosx10.11 +// XFAIL: with_system_cxx_lib=macosx10.10 +// XFAIL: with_system_cxx_lib=macosx10.9 +// XFAIL: with_system_cxx_lib=macosx10.8 +// XFAIL: with_system_cxx_lib=macosx10.7 + // <thread> // template <class Rep, class Period> @@ -23,6 +32,7 @@ void sig_action(int) {} +#include <iostream> int main() { int ec; |