tests: Disable another timeout test by default

Don't run this timeout test unless "thorough" tests are requested.

See commit 3894335dc6
This commit is contained in:
Bastien Nocera 2019-12-04 15:47:01 +01:00 committed by Philip Withnall
parent 8e8ee82580
commit 9ea7947e22

View File

@ -172,6 +172,12 @@ test_timeouts (void)
GMainLoop *loop;
GSource *source;
if (!g_test_thorough ())
{
g_test_skip ("Not running timing heavy test");
return;
}
a = b = c = 0;
ctx = g_main_context_new ();