mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
tests: skip mxf tests while elements haven't been ported yet
This commit is contained in:
parent
86a8018119
commit
98bfa4a1e0
2 changed files with 10 additions and 0 deletions
|
@ -269,6 +269,11 @@ mxfdemux_suite (void)
|
|||
Suite *s = suite_create ("mxfdemux");
|
||||
TCase *tc_chain = tcase_create ("general");
|
||||
|
||||
/* FIXME: remove again once ported */
|
||||
if (!gst_registry_check_feature_version (gst_registry_get (), "mxfdemux", 1,
|
||||
0, 0))
|
||||
return s;
|
||||
|
||||
suite_add_tcase (s, tc_chain);
|
||||
tcase_set_timeout (tc_chain, 180);
|
||||
tcase_add_test (tc_chain, test_pull);
|
||||
|
|
|
@ -248,6 +248,11 @@ mxfmux_suite (void)
|
|||
suite_add_tcase (s, tc_chain);
|
||||
tcase_set_timeout (tc_chain, 180);
|
||||
|
||||
/* FIXME: remove again once ported */
|
||||
if (!gst_registry_check_feature_version (gst_registry_get (), "mxfmux", 1, 0,
|
||||
0))
|
||||
return s;
|
||||
|
||||
tcase_add_test (tc_chain, test_mpeg2);
|
||||
tcase_add_test (tc_chain, test_raw_video_raw_audio);
|
||||
tcase_add_test (tc_chain, test_raw_video_stride_transform);
|
||||
|
|
Loading…
Reference in a new issue