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:
Tim-Philipp Müller 2012-04-09 12:55:34 +01:00
parent fa5edd2680
commit be9baf1a0b

View file

@ -241,10 +241,16 @@ GST_START_TEST (test_video_encoders_decoders)
GST_MESSAGE_ANY & ~(GST_MESSAGE_ERROR | GST_MESSAGE_WARNING),
GST_MESSAGE_UNKNOWN, target_state);
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);
if (gst_registry_check_feature_version (gst_registry_get (), "smokeenc",
GST_VERSION_MAJOR, GST_VERSION_MINOR, 0) &&
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