From 06cd4e24578caf1e16e364eb56edbbb065b8533e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Mon, 29 Apr 2024 18:24:36 +0100 Subject: [PATCH] unixfd: disable flaky test_unixfd_segment for now It's a problem with the test, and a proper fix might require new API, so just disable it for now. Part-of: --- subprojects/gst-plugins-bad/tests/check/elements/unixfd.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/subprojects/gst-plugins-bad/tests/check/elements/unixfd.c b/subprojects/gst-plugins-bad/tests/check/elements/unixfd.c index d3dd1d0ee1..832b502217 100644 --- a/subprojects/gst-plugins-bad/tests/check/elements/unixfd.c +++ b/subprojects/gst-plugins-bad/tests/check/elements/unixfd.c @@ -135,6 +135,8 @@ GST_START_TEST (test_unixfd_videotestsrc) GST_END_TEST; +// Disable test_unixfd_segment for now, it's flaky and it's a problem with the test +#if 0 GST_START_TEST (test_unixfd_segment) { GError *error = NULL; @@ -220,6 +222,7 @@ GST_START_TEST (test_unixfd_segment) } GST_END_TEST; +#endif static Suite * unixfd_suite (void) @@ -229,7 +232,7 @@ unixfd_suite (void) suite_add_tcase (s, tc); tcase_add_test (tc, test_unixfd_videotestsrc); - tcase_add_test (tc, test_unixfd_segment); + //tcase_add_test (tc, test_unixfd_segment); return s; }