diff options
author | Eric Fiselier <eric@efcs.ca> | 2016-10-12 04:29:50 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2016-10-12 04:29:50 +0000 |
commit | 76e316f995f8970075e93c4888cbe0436363137a (patch) | |
tree | c9e99a6e5888b2e9422bf87c35109ddc8a78adc1 /libcxx/test/std/thread | |
parent | a907b5ca7c836fc67025adc1e68fcbc1e1293b6d (diff) | |
download | bcm5719-llvm-76e316f995f8970075e93c4888cbe0436363137a.tar.gz bcm5719-llvm-76e316f995f8970075e93c4888cbe0436363137a.zip |
Prevent the test suite from hanging when run against libstdc++
llvm-svn: 283975
Diffstat (limited to 'libcxx/test/std/thread')
-rw-r--r-- | libcxx/test/std/thread/thread.mutex/thread.lock.algorithm/lock.pass.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libcxx/test/std/thread/thread.mutex/thread.lock.algorithm/lock.pass.cpp b/libcxx/test/std/thread/thread.mutex/thread.lock.algorithm/lock.pass.cpp index eac7600b5d1..9e20144e8c8 100644 --- a/libcxx/test/std/thread/thread.mutex/thread.lock.algorithm/lock.pass.cpp +++ b/libcxx/test/std/thread/thread.mutex/thread.lock.algorithm/lock.pass.cpp @@ -10,6 +10,11 @@ // XFAIL: libcpp-no-exceptions // UNSUPPORTED: libcpp-has-no-threads +// This test hangs forever when built against libstdc++. In order to allow +// validation of the test suite against other STLs we have to mark it +// unsupported. +// UNSUPPORTED: libstdc++ + // <mutex> // template <class L1, class L2, class... L3> |