From b27b31e0995a043a67310cd14f455cced28676af Mon Sep 17 00:00:00 2001 From: Aaron Boxer Date: Mon, 1 Apr 2019 12:06:02 -0400 Subject: [PATCH] discoverer: set 30 second for long-running tests --- tests/check/libs/discoverer.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/check/libs/discoverer.c b/tests/check/libs/discoverer.c index 5e9e81d8c8..95a94940c4 100644 --- a/tests/check/libs/discoverer.c +++ b/tests/check/libs/discoverer.c @@ -57,7 +57,7 @@ GST_START_TEST (test_disco_serializing) g_build_filename (GST_TEST_FILES_PATH, "theora-vorbis.ogg", NULL); /* high timeout, in case we're running under valgrind */ - dc = gst_discoverer_new (5 * GST_SECOND, &err); + dc = gst_discoverer_new (30 * GST_SECOND, &err); fail_unless (dc != NULL); fail_unless (err == NULL); @@ -115,7 +115,7 @@ GST_START_TEST (test_disco_sync) gchar *uri; /* high timeout, in case we're running under valgrind */ - dc = gst_discoverer_new (5 * GST_SECOND, &err); + dc = gst_discoverer_new (30 * GST_SECOND, &err); fail_unless (dc != NULL); fail_unless (err == NULL); @@ -286,7 +286,7 @@ test_disco_async_with_context (GMainContext * context) data.loop = g_main_loop_new (context, FALSE); /* high timeout, in case we're running under valgrind */ - dc = gst_discoverer_new (5 * GST_SECOND, &err); + dc = gst_discoverer_new (30 * GST_SECOND, &err); fail_unless (dc != NULL); fail_unless (err == NULL);