summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Chan <benchan@chromium.org>2014-10-03 13:42:49 -0700
committerDan Williams <dcbw@redhat.com>2014-10-05 15:37:47 -0500
commit1e5ec7e1b147fc6dd2227d7ebf7510a96eb0503e (patch)
treeea60069b9fa936a26b4bb6854b5647c08f9ab0ec
parent8718ed53bee53519fb11f313dfbe55be527f6d76 (diff)
tests: increase timeout for starting ModemManager on test bus
The timeout for starting ModemManager on the test bus was 3s, which is sufficient under normal conditions. However, when running ModemManager tests on a build infrastructure under a heavy load, we've observed that the timeout isn't always sufficient and that becomes the source of false test failures. This patch increases the timeout to 30s, which shouldn't introduce any unexpected behavior under normnal conditions while addressing the timeout issue on heavily loaded systems.
-rw-r--r--plugins/tests/test-fixture.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/tests/test-fixture.c b/plugins/tests/test-fixture.c
index 6b10f47e..81644ab0 100644
--- a/plugins/tests/test-fixture.c
+++ b/plugins/tests/test-fixture.c
@@ -46,7 +46,7 @@ test_fixture_setup (TestFixture *fixture)
NULL, /* inputs */
NULL, /* outputs */
G_DBUS_CALL_FLAGS_NONE,
- 3000, /* timeout, ms */
+ 30000, /* timeout, ms */
NULL, /* cancellable */
&error);
if (!result)