diff options
author | David Robillard <d@drobilla.net> | 2018-09-17 00:20:53 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-09-17 00:20:53 +0200 |
commit | 29764eef1401dac32bc968f1ffdf55257e8bb4dd (patch) | |
tree | 0ce8cd40ad2b61cf6c3366a7091dd211b7decebc /test/sem_test.cpp | |
parent | 62b184c18d90e2d973c7c4df0b712a03f4c2bbee (diff) | |
download | raul-29764eef1401dac32bc968f1ffdf55257e8bb4dd.tar.gz raul-29764eef1401dac32bc968f1ffdf55257e8bb4dd.tar.bz2 raul-29764eef1401dac32bc968f1ffdf55257e8bb4dd.zip |
Fix Windows build
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 8daf82b..3830604 100644 --- a/test/sem_test.cpp +++ b/test/sem_test.cpp @@ -56,7 +56,7 @@ main() const auto start = std::chrono::steady_clock::now(); sem.timed_wait(std::chrono::milliseconds(100)); const auto end = std::chrono::steady_clock::now(); - assert(end - start > std::chrono::milliseconds(100)); + assert(end - start > std::chrono::milliseconds(80)); assert(end - start < std::chrono::milliseconds(200)); // Check that we can't successfully wait on a zero semaphore |