diff options
author | Daniel Dunbar <daniel@zuster.org> | 2013-02-11 21:04:34 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2013-02-11 21:04:34 +0000 |
commit | 496f1765a221b0725449e492e67c6536ec1d835a (patch) | |
tree | 3d72f8278a5d5a30cf2273e3eeecf206f6cfcc67 /libcxx/test/thread/thread.condition | |
parent | cfe285e604180b33b15dc8d7bf2cbb561115ef01 (diff) | |
download | bcm5719-llvm-496f1765a221b0725449e492e67c6536ec1d835a.tar.gz bcm5719-llvm-496f1765a221b0725449e492e67c6536ec1d835a.zip |
[tests] Another batch of timeout increases.
llvm-svn: 174902
Diffstat (limited to 'libcxx/test/thread/thread.condition')
4 files changed, 4 insertions, 4 deletions
diff --git a/libcxx/test/thread/thread.condition/thread.condition.condvar/wait_for.pass.cpp b/libcxx/test/thread/thread.condition/thread.condition.condvar/wait_for.pass.cpp index 6c94e7210cd..038c946709f 100644 --- a/libcxx/test/thread/thread.condition/thread.condition.condvar/wait_for.pass.cpp +++ b/libcxx/test/thread/thread.condition/thread.condition.condvar/wait_for.pass.cpp @@ -50,7 +50,7 @@ void f() } else { - assert(t1 - t0 - milliseconds(250) < milliseconds(10)); + assert(t1 - t0 - milliseconds(250) < milliseconds(50)); assert(test2 == 0); } ++runs; diff --git a/libcxx/test/thread/thread.condition/thread.condition.condvar/wait_for_pred.pass.cpp b/libcxx/test/thread/thread.condition/thread.condition.condvar/wait_for_pred.pass.cpp index 930841dff0e..ef7a9b67ed0 100644 --- a/libcxx/test/thread/thread.condition/thread.condition.condvar/wait_for_pred.pass.cpp +++ b/libcxx/test/thread/thread.condition/thread.condition.condvar/wait_for_pred.pass.cpp @@ -58,7 +58,7 @@ void f() } else { - assert(t1 - t0 - milliseconds(250) < milliseconds(10)); + assert(t1 - t0 - milliseconds(250) < milliseconds(50)); assert(test2 == 0); } ++runs; diff --git a/libcxx/test/thread/thread.condition/thread.condition.condvarany/wait_for.pass.cpp b/libcxx/test/thread/thread.condition/thread.condition.condvarany/wait_for.pass.cpp index d50ad40f9bb..89759ac934b 100644 --- a/libcxx/test/thread/thread.condition/thread.condition.condvarany/wait_for.pass.cpp +++ b/libcxx/test/thread/thread.condition/thread.condition.condvarany/wait_for.pass.cpp @@ -53,7 +53,7 @@ void f() } else { - assert(t1 - t0 - milliseconds(250) < milliseconds(5)); + assert(t1 - t0 - milliseconds(250) < milliseconds(50)); assert(test2 == 0); } ++runs; diff --git a/libcxx/test/thread/thread.condition/thread.condition.condvarany/wait_until_pred.pass.cpp b/libcxx/test/thread/thread.condition/thread.condition.condvarany/wait_until_pred.pass.cpp index 6a7a132a400..1490e1157f8 100644 --- a/libcxx/test/thread/thread.condition/thread.condition.condvarany/wait_until_pred.pass.cpp +++ b/libcxx/test/thread/thread.condition/thread.condition.condvarany/wait_until_pred.pass.cpp @@ -79,7 +79,7 @@ void f() } else { - assert(t1 - t0 - Clock::duration(250) < Clock::duration(5)); + assert(t1 - t0 - Clock::duration(250) < Clock::duration(50)); assert(test2 == 0); assert(!r); } |