summaryrefslogtreecommitdiffstats
path: root/libcxx/test/thread/thread.threads/thread.thread.this/sleep_until.pass.cpp
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2013-02-11 21:04:34 +0000
committerDaniel Dunbar <daniel@zuster.org>2013-02-11 21:04:34 +0000
commit496f1765a221b0725449e492e67c6536ec1d835a (patch)
tree3d72f8278a5d5a30cf2273e3eeecf206f6cfcc67 /libcxx/test/thread/thread.threads/thread.thread.this/sleep_until.pass.cpp
parentcfe285e604180b33b15dc8d7bf2cbb561115ef01 (diff)
downloadbcm5719-llvm-496f1765a221b0725449e492e67c6536ec1d835a.tar.gz
bcm5719-llvm-496f1765a221b0725449e492e67c6536ec1d835a.zip
[tests] Another batch of timeout increases.
llvm-svn: 174902
Diffstat (limited to 'libcxx/test/thread/thread.threads/thread.thread.this/sleep_until.pass.cpp')
-rw-r--r--libcxx/test/thread/thread.threads/thread.thread.this/sleep_until.pass.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/test/thread/thread.threads/thread.thread.this/sleep_until.pass.cpp b/libcxx/test/thread/thread.threads/thread.thread.this/sleep_until.pass.cpp
index c0bf087c6fa..2f3bb9a0823 100644
--- a/libcxx/test/thread/thread.threads/thread.thread.this/sleep_until.pass.cpp
+++ b/libcxx/test/thread/thread.threads/thread.thread.this/sleep_until.pass.cpp
@@ -26,7 +26,7 @@ int main()
std::this_thread::sleep_until(t0 + ms);
time_point t1 = Clock::now();
std::chrono::nanoseconds ns = (t1 - t0) - ms;
- std::chrono::nanoseconds err = ms / 100;
- // The time slept is within 1% of 500ms
+ std::chrono::nanoseconds err = 5 * ms / 100;
+ // The time slept is within 5% of 500ms
assert(std::abs(ns.count()) < err.count());
}
OpenPOWER on IntegriCloud