[tests] Another batch of timeout increases.
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@174902 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -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());
|
||||
}
|
||||
|
Reference in New Issue
Block a user