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:
matoro
2023-04-20 17:53:35 -04:00
parent 7e3b175d93
commit b7d41ac5bd

View File

@@ -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);