1 From b935abba3d8fa3ea1ce384c08e650afd8c20b78a Mon Sep 17 00:00:00 2001
2 From: Claudius Heine <ch@denx.de>
3 Date: Wed, 2 Feb 2022 13:47:02 +0100
4 Subject: [PATCH] tests: remove gstbin:test_watch_for_state_change testcase
6 This testcase seems to be flaky, and upstream marked it as such:
7 https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/778
9 This patch removes the testcase to avoid it interfering with out ptest.
11 Signed-off-by: Claudius Heine <ch@denx.de>
13 Upstream-Status: Inappropriate [needs proper upstream fix]
15 tests/check/gst/gstbin.c | 69 -------------------
16 1 file changed, 69 deletions(-)
18 diff --git a/tests/check/gst/gstbin.c b/tests/check/gst/gstbin.c
19 index e366d5fe20..ac29d81474 100644
20 --- a/tests/check/gst/gstbin.c
21 +++ b/tests/check/gst/gstbin.c
22 @@ -691,74 +691,6 @@ GST_START_TEST (test_message_state_changed_children)
26 -GST_START_TEST (test_watch_for_state_change)
28 - GstElement *src, *sink, *bin;
30 - GstStateChangeReturn ret;
32 - bin = gst_element_factory_make ("bin", NULL);
33 - fail_unless (bin != NULL, "Could not create bin");
35 - bus = g_object_new (gst_bus_get_type (), NULL);
36 - gst_object_ref_sink (bus);
37 - gst_element_set_bus (GST_ELEMENT_CAST (bin), bus);
39 - src = gst_element_factory_make ("fakesrc", NULL);
40 - fail_if (src == NULL, "Could not create fakesrc");
41 - sink = gst_element_factory_make ("fakesink", NULL);
42 - fail_if (sink == NULL, "Could not create fakesink");
44 - gst_bin_add (GST_BIN (bin), sink);
45 - gst_bin_add (GST_BIN (bin), src);
47 - fail_unless (gst_element_link (src, sink), "could not link src and sink");
49 - /* change state, spawning two times three messages */
50 - ret = gst_element_set_state (GST_ELEMENT (bin), GST_STATE_PAUSED);
51 - fail_unless (ret == GST_STATE_CHANGE_ASYNC);
53 - gst_element_get_state (GST_ELEMENT (bin), NULL, NULL,
54 - GST_CLOCK_TIME_NONE);
55 - fail_unless (ret == GST_STATE_CHANGE_SUCCESS);
57 - pop_state_changed (bus, 6);
58 - pop_async_done (bus);
61 - fail_unless (gst_bus_have_pending (bus) == FALSE,
62 - "Unexpected messages on bus");
64 - ret = gst_element_set_state (GST_ELEMENT (bin), GST_STATE_PLAYING);
65 - fail_unless (ret == GST_STATE_CHANGE_SUCCESS);
67 - pop_state_changed (bus, 3);
69 - /* this one might return either SUCCESS or ASYNC, likely SUCCESS */
70 - ret = gst_element_set_state (GST_ELEMENT (bin), GST_STATE_PAUSED);
71 - gst_element_get_state (GST_ELEMENT (bin), NULL, NULL, GST_CLOCK_TIME_NONE);
73 - pop_state_changed (bus, 3);
74 - if (ret == GST_STATE_CHANGE_ASYNC) {
75 - pop_async_done (bus);
79 - fail_unless (gst_bus_have_pending (bus) == FALSE,
80 - "Unexpected messages on bus");
82 - gst_bus_set_flushing (bus, TRUE);
84 - ret = gst_element_set_state (GST_ELEMENT (bin), GST_STATE_NULL);
85 - fail_unless (ret == GST_STATE_CHANGE_SUCCESS);
88 - gst_object_unref (bus);
89 - gst_object_unref (bin);
94 GST_START_TEST (test_state_change_error_message)
96 GstElement *src, *sink, *bin;
97 @@ -1956,7 +1888,6 @@ gst_bin_suite (void)
98 tcase_add_test (tc_chain, test_message_state_changed);
99 tcase_add_test (tc_chain, test_message_state_changed_child);
100 tcase_add_test (tc_chain, test_message_state_changed_children);
101 - tcase_add_test (tc_chain, test_watch_for_state_change);
102 tcase_add_test (tc_chain, test_state_change_error_message);
103 tcase_add_test (tc_chain, test_add_linked);
104 tcase_add_test (tc_chain, test_add_self);