diff options
Diffstat (limited to 'test/sem_test.cpp')
-rw-r--r-- | test/sem_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sem_test.cpp b/test/sem_test.cpp index 3830604..808733b 100644 --- a/test/sem_test.cpp +++ b/test/sem_test.cpp @@ -57,7 +57,7 @@ main() sem.timed_wait(std::chrono::milliseconds(100)); const auto end = std::chrono::steady_clock::now(); assert(end - start > std::chrono::milliseconds(80)); - assert(end - start < std::chrono::milliseconds(200)); + assert(end - start < std::chrono::milliseconds(400)); // Check that we can't successfully wait on a zero semaphore assert(!sem.timed_wait(std::chrono::milliseconds(100))); |