diff options
author | Eric Fiselier <eric@efcs.ca> | 2015-08-28 05:46:17 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2015-08-28 05:46:17 +0000 |
commit | 1e051aab0cc12bb4a4c1be8d1b1b70537fd0f012 (patch) | |
tree | cccde78e8ef13effb76aaa162ff1901771f7cd1d /libcxx/test/std/thread/thread.condition | |
parent | bc3af7b031b5cb4faea54fbdf7cab2e0dd4d01e1 (diff) | |
download | bcm5719-llvm-1e051aab0cc12bb4a4c1be8d1b1b70537fd0f012.tar.gz bcm5719-llvm-1e051aab0cc12bb4a4c1be8d1b1b70537fd0f012.zip |
Finally get the test suite passing in C++03!!
After months of work there are only 4 tests still failing in C++03.
This patch fixes those tests.
All of the libc++ builders should be green.
llvm-svn: 246275
Diffstat (limited to 'libcxx/test/std/thread/thread.condition')
-rw-r--r-- | libcxx/test/std/thread/thread.condition/notify_all_at_thread_exit.pass.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libcxx/test/std/thread/thread.condition/notify_all_at_thread_exit.pass.cpp b/libcxx/test/std/thread/thread.condition/notify_all_at_thread_exit.pass.cpp index 3292d8bdc57..02da345cb7d 100644 --- a/libcxx/test/std/thread/thread.condition/notify_all_at_thread_exit.pass.cpp +++ b/libcxx/test/std/thread/thread.condition/notify_all_at_thread_exit.pass.cpp @@ -9,6 +9,10 @@ // // UNSUPPORTED: libcpp-has-no-threads +// notify_all_at_thread_exit(...) requires move semantics to transfer the +// unique_lock. +// UNSUPPORTED: c++98, c++03 + // <condition_variable> // void |