[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.

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@174721 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Daniel Dunbar
2013-02-08 17:41:19 +00:00
parent 5920cfc403
commit fe14b970ac
11 changed files with 12 additions and 12 deletions

View File

@@ -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;