summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorEdward Hervey <edward@centricular.com>2018-10-27 13:37:38 +0200
committerEdward Hervey <bilboed@bilboed.com>2018-10-27 13:37:38 +0200
commit2f7d87a7d1670379e4873e1b8acaef1402fe720d (patch)
tree383fcb311d75239049b6d2a9c67c826123400c1b /tests
parent16c1eee36f69e0e3add9b954677125138ad065a7 (diff)
downloadgstreamer-plugins-bad-2f7d87a7d1670379e4873e1b8acaef1402fe720d.tar.gz
tests: Disable most gstplayer tests for now
https://bugzilla.gnome.org/show_bug.cgi?id=787374
Diffstat (limited to 'tests')
-rw-r--r--tests/check/libs/player.c33
1 files changed, 18 insertions, 15 deletions
diff --git a/tests/check/libs/player.c b/tests/check/libs/player.c
index 8916ea39b..a0eae58ff 100644
--- a/tests/check/libs/player.c
+++ b/tests/check/libs/player.c
@@ -1701,28 +1701,31 @@ player_suite (void)
tcase_add_test (tc_general, test_set_and_get_uri);
tcase_add_test (tc_general, test_set_and_get_position_update_interval);
+ /* Skip playback tests for now.
+ * See https://bugzilla.gnome.org/show_bug.cgi?id=787374 */
+
#ifdef HAVE_VALGRIND
if (RUNNING_ON_VALGRIND) {
} else
#endif
{
- tcase_add_test (tc_general, test_play_position_update_interval);
+ tcase_skip_broken_test (tc_general, test_play_position_update_interval);
}
- tcase_add_test (tc_general, test_play_audio_eos);
- tcase_add_test (tc_general, test_play_audio_video_eos);
- tcase_add_test (tc_general, test_play_error_invalid_uri);
- tcase_add_test (tc_general, test_play_error_invalid_uri_and_play);
+ tcase_skip_broken_test (tc_general, test_play_audio_eos);
+ tcase_skip_broken_test (tc_general, test_play_audio_video_eos);
+ tcase_skip_broken_test (tc_general, test_play_error_invalid_uri);
+ tcase_skip_broken_test (tc_general, test_play_error_invalid_uri_and_play);
tcase_skip_broken_test (tc_general, test_play_media_info);
- tcase_add_test (tc_general, test_play_stream_disable);
- tcase_add_test (tc_general, test_play_stream_switch_audio);
- tcase_add_test (tc_general, test_play_stream_switch_subtitle);
- tcase_add_test (tc_general, test_play_error_invalid_external_suburi);
- tcase_add_test (tc_general, test_play_external_suburi);
- tcase_add_test (tc_general, test_play_forward_rate);
- tcase_add_test (tc_general, test_play_backward_rate);
- tcase_add_test (tc_general, test_play_audio_video_seek_done);
- tcase_add_test (tc_general, test_restart);
- tcase_add_test (tc_general, test_user_agent);
+ tcase_skip_broken_test (tc_general, test_play_stream_disable);
+ tcase_skip_broken_test (tc_general, test_play_stream_switch_audio);
+ tcase_skip_broken_test (tc_general, test_play_stream_switch_subtitle);
+ tcase_skip_broken_test (tc_general, test_play_error_invalid_external_suburi);
+ tcase_skip_broken_test (tc_general, test_play_external_suburi);
+ tcase_skip_broken_test (tc_general, test_play_forward_rate);
+ tcase_skip_broken_test (tc_general, test_play_backward_rate);
+ tcase_skip_broken_test (tc_general, test_play_audio_video_seek_done);
+ tcase_skip_broken_test (tc_general, test_restart);
+ tcase_skip_broken_test (tc_general, test_user_agent);
suite_add_tcase (s, tc_general);