diff --git a/glib/tests/asyncqueue.c b/glib/tests/asyncqueue.c index 2c6abf1b7..c414e69c1 100644 --- a/glib/tests/asyncqueue.c +++ b/glib/tests/asyncqueue.c @@ -193,7 +193,7 @@ test_async_queue_timed (void) /* diff should be only a little bit more than G_USEC_PER_SEC/10, but * we have to leave some wiggle room for heavily-loaded machines... */ - g_assert_cmpint (diff, <, G_USEC_PER_SEC); + g_assert_cmpint (diff, <, 2 * G_USEC_PER_SEC); start = end; g_get_current_time (&tv); @@ -204,7 +204,7 @@ test_async_queue_timed (void) end = g_get_monotonic_time (); diff = end - start; g_assert_cmpint (diff, >=, G_USEC_PER_SEC / 10); - g_assert_cmpint (diff, <, G_USEC_PER_SEC); + g_assert_cmpint (diff, <, 2 * G_USEC_PER_SEC); start = end; g_get_current_time (&tv); @@ -217,7 +217,7 @@ test_async_queue_timed (void) end = g_get_monotonic_time (); diff = end - start; g_assert_cmpint (diff, >=, G_USEC_PER_SEC / 10); - g_assert_cmpint (diff, <, G_USEC_PER_SEC); + g_assert_cmpint (diff, <, 2 * G_USEC_PER_SEC); g_async_queue_unref (q); }