diff options
author | Daniel Dunbar <daniel@zuster.org> | 2013-02-08 17:41:19 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2013-02-08 17:41:19 +0000 |
commit | 577e696425c51a1be8659f45191afee62683bf0c (patch) | |
tree | 73a221842e9183087879d3eb4f2cfd912f027680 /libcxx/test/thread/thread.condition | |
parent | b95f5450a97a879c18e37575315bb7ff98e84392 (diff) | |
download | bcm5719-llvm-577e696425c51a1be8659f45191afee62683bf0c.tar.gz bcm5719-llvm-577e696425c51a1be8659f45191afee62683bf0c.zip |
[tests] Increase a bunch of wait limits.
- Basically I just ran the thread tests many many times on a busy machine and
bumped the timeouts whenever I hit a test failure.
- This is obviously subpar, but is the best I can do without the tests being
rewritten to not depend on arbitrary timeouts.
llvm-svn: 174721
Diffstat (limited to 'libcxx/test/thread/thread.condition')
-rw-r--r-- | libcxx/test/thread/thread.condition/thread.condition.condvarany/wait_until.pass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/test/thread/thread.condition/thread.condition.condvarany/wait_until.pass.cpp b/libcxx/test/thread/thread.condition/thread.condition.condvarany/wait_until.pass.cpp index 7b21660c162..15bf80953f1 100644 --- a/libcxx/test/thread/thread.condition/thread.condition.condvarany/wait_until.pass.cpp +++ b/libcxx/test/thread/thread.condition/thread.condition.condvarany/wait_until.pass.cpp @@ -68,7 +68,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); } ++runs; |