diff options
Diffstat (limited to '3rdparty/libuv/test/runner-unix.c')
-rw-r--r-- | 3rdparty/libuv/test/runner-unix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/3rdparty/libuv/test/runner-unix.c b/3rdparty/libuv/test/runner-unix.c index 2264d1e89d5..2405fa878c0 100644 --- a/3rdparty/libuv/test/runner-unix.c +++ b/3rdparty/libuv/test/runner-unix.c @@ -226,7 +226,7 @@ int process_wait(process_info_t* vec, int n, int timeout) { tv = timebase; for (;;) { /* Check that gettimeofday() doesn't jump back in time. */ - assert(tv.tv_sec == timebase.tv_sec || + assert(tv.tv_sec > timebase.tv_sec || (tv.tv_sec == timebase.tv_sec && tv.tv_usec >= timebase.tv_usec)); elapsed_ms = |