tests: common: crank up timeout for slower devices
Timeout of 3 seconds is too slow for test-si-standard-link on slower devices, crank this up with plenty of extra margin. Does not practically affect running time on faster devices.
This commit is contained in:
@@ -67,7 +67,7 @@ wp_base_test_fixture_setup (WpBaseTestFixture * self, WpBaseTestFlags flags)
|
||||
g_main_context_push_thread_default (self->context);
|
||||
|
||||
/* watchdog */
|
||||
self->timeout_source = g_timeout_source_new_seconds (3);
|
||||
self->timeout_source = g_timeout_source_new_seconds (8);
|
||||
g_source_set_callback (self->timeout_source, (GSourceFunc) timeout_callback,
|
||||
self, NULL);
|
||||
g_source_attach (self->timeout_source, self->context);
|
||||
|
Reference in New Issue
Block a user