mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-30 13:41:48 +00:00
tests: disable simple smokeenc/dec launch lines test
Disable test for smoke elements, which aren't ported yet (and maybe shouldn't be ported).
This commit is contained in:
parent
fa5edd2680
commit
be9baf1a0b
1 changed files with 10 additions and 4 deletions
|
@ -241,10 +241,16 @@ GST_START_TEST (test_video_encoders_decoders)
|
||||||
GST_MESSAGE_ANY & ~(GST_MESSAGE_ERROR | GST_MESSAGE_WARNING),
|
GST_MESSAGE_ANY & ~(GST_MESSAGE_ERROR | GST_MESSAGE_WARNING),
|
||||||
GST_MESSAGE_UNKNOWN, target_state);
|
GST_MESSAGE_UNKNOWN, target_state);
|
||||||
|
|
||||||
s = ENC_DEC_PIPELINE_STRING (DEFAULT_BUFCOUNT, "smokeenc", "smokedec");
|
|
||||||
run_pipeline (setup_pipeline (s), s,
|
if (gst_registry_check_feature_version (gst_registry_get (), "smokeenc",
|
||||||
GST_MESSAGE_ANY & ~(GST_MESSAGE_ERROR | GST_MESSAGE_WARNING),
|
GST_VERSION_MAJOR, GST_VERSION_MINOR, 0) &&
|
||||||
GST_MESSAGE_UNKNOWN, target_state);
|
gst_registry_check_feature_version (gst_registry_get (), "smokedec",
|
||||||
|
GST_VERSION_MAJOR, GST_VERSION_MINOR, 0)) {
|
||||||
|
s = ENC_DEC_PIPELINE_STRING (DEFAULT_BUFCOUNT, "smokeenc", "smokedec");
|
||||||
|
run_pipeline (setup_pipeline (s), s,
|
||||||
|
GST_MESSAGE_ANY & ~(GST_MESSAGE_ERROR | GST_MESSAGE_WARNING),
|
||||||
|
GST_MESSAGE_UNKNOWN, target_state);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
GST_END_TEST
|
GST_END_TEST
|
||||||
|
|
Loading…
Reference in a new issue