diff options
author | Edward Hervey <bilboed@bilboed.com> | 2011-02-10 19:11:57 +0100 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2011-02-10 19:12:18 +0100 |
commit | c3bdc5b138b97c9365098a091db2b74418482219 (patch) | |
tree | f8bf6cfcab282793f27ee3d03141a5bc3b2c7e19 | |
parent | 1cdf7d533215f831c6cca6ec3102797ef38be8bc (diff) |
tests: Make gnlcomposition check stop faster
-rw-r--r-- | tests/check/gnl/gnlcomposition.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/check/gnl/gnlcomposition.c b/tests/check/gnl/gnlcomposition.c index cb91a0f..a517569 100644 --- a/tests/check/gnl/gnlcomposition.c +++ b/tests/check/gnl/gnlcomposition.c @@ -391,7 +391,8 @@ GST_START_TEST (test_no_more_pads_race) /* FIXME: maybe slow down the videotestsrc steaming thread */ gst_bin_add (GST_BIN (composition), source2); - message = gst_bus_timed_pop_filtered (bus, 1 * GST_SECOND, GST_MESSAGE_ERROR); + message = + gst_bus_timed_pop_filtered (bus, GST_SECOND / 10, GST_MESSAGE_ERROR); if (message) { if (GST_MESSAGE_TYPE (message) == GST_MESSAGE_ERROR) { GError *error; |