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: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6813>
This commit is contained in:
Tim-Philipp Müller 2024-04-29 18:24:36 +01:00
parent 9e58fa49f1
commit 06cd4e2457

View file

@ -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;
}