summaryrefslogtreecommitdiffstats
path: root/meta/recipes-multimedia/gstreamer/gstreamer1.0/0006-tests-seek-Don-t-use-too-strict-timeout-for-validati.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gstreamer1.0/0006-tests-seek-Don-t-use-too-strict-timeout-for-validati.patch')
-rw-r--r--meta/recipes-multimedia/gstreamer/gstreamer1.0/0006-tests-seek-Don-t-use-too-strict-timeout-for-validati.patch33
1 files changed, 33 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0/0006-tests-seek-Don-t-use-too-strict-timeout-for-validati.patch b/meta/recipes-multimedia/gstreamer/gstreamer1.0/0006-tests-seek-Don-t-use-too-strict-timeout-for-validati.patch
new file mode 100644
index 0000000000..e32f3c101f
--- /dev/null
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0/0006-tests-seek-Don-t-use-too-strict-timeout-for-validati.patch
@@ -0,0 +1,33 @@
1From 1db36347d05d88835519368442e9aa89c64091ad Mon Sep 17 00:00:00 2001
2From: Seungha Yang <seungha@centricular.com>
3Date: Tue, 15 Sep 2020 00:54:58 +0900
4Subject: [PATCH] tests: seek: Don't use too strict timeout for validation
5
6Expected segment-done message might not be seen within expected
7time if system is not powerful enough.
8
9Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/625>
10
11Upstream-Status: Backport [https://cgit.freedesktop.org/gstreamer/gstreamer/commit?id=f44312ae5d831438fcf8041162079c65321c588c]
12Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
13Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com>
14---
15 tests/check/pipelines/seek.c | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18diff --git a/tests/check/pipelines/seek.c b/tests/check/pipelines/seek.c
19index 28bb8846d..5f7447bc5 100644
20--- a/tests/check/pipelines/seek.c
21+++ b/tests/check/pipelines/seek.c
22@@ -521,7 +521,7 @@ GST_START_TEST (test_loopback_2)
23
24 GST_INFO ("wait for segment done message");
25
26- msg = gst_bus_timed_pop_filtered (bus, (GstClockTime) 2 * GST_SECOND,
27+ msg = gst_bus_timed_pop_filtered (bus, GST_CLOCK_TIME_NONE,
28 GST_MESSAGE_SEGMENT_DONE | GST_MESSAGE_ERROR);
29 fail_unless (msg, "no message within the timed window");
30 fail_unless_equals_string (GST_MESSAGE_TYPE_NAME (msg), "segment-done");
31--
322.29.2
33