mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
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:
parent
9e58fa49f1
commit
06cd4e2457
1 changed files with 4 additions and 1 deletions
|
@ -135,6 +135,8 @@ GST_START_TEST (test_unixfd_videotestsrc)
|
||||||
|
|
||||||
GST_END_TEST;
|
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)
|
GST_START_TEST (test_unixfd_segment)
|
||||||
{
|
{
|
||||||
GError *error = NULL;
|
GError *error = NULL;
|
||||||
|
@ -220,6 +222,7 @@ GST_START_TEST (test_unixfd_segment)
|
||||||
}
|
}
|
||||||
|
|
||||||
GST_END_TEST;
|
GST_END_TEST;
|
||||||
|
#endif
|
||||||
|
|
||||||
static Suite *
|
static Suite *
|
||||||
unixfd_suite (void)
|
unixfd_suite (void)
|
||||||
|
@ -229,7 +232,7 @@ unixfd_suite (void)
|
||||||
|
|
||||||
suite_add_tcase (s, tc);
|
suite_add_tcase (s, tc);
|
||||||
tcase_add_test (tc, test_unixfd_videotestsrc);
|
tcase_add_test (tc, test_unixfd_videotestsrc);
|
||||||
tcase_add_test (tc, test_unixfd_segment);
|
//tcase_add_test (tc, test_unixfd_segment);
|
||||||
|
|
||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue