tests: remove GST_DISABLE_PARSE guards from two tests that don't require it
authorTim-Philipp Müller <tim@centricular.com>
Thu, 12 Feb 2015 15:48:07 +0000 (15:48 +0000)
committerTim-Philipp Müller <tim@centricular.com>
Fri, 13 Feb 2015 16:25:14 +0000 (16:25 +0000)
tests/check/elements/audiomixer.c
tests/check/elements/compositor.c

index 15dbc77..d758e75 100644 (file)
@@ -1774,7 +1774,6 @@ GST_START_TEST (test_sync_unaligned)
 
 GST_END_TEST;
 
-#ifndef GST_DISABLE_PARSE
 GST_START_TEST (test_segment_base_handling)
 {
   GstElement *pipeline, *sink, *mix, *src1, *src2;
@@ -1834,7 +1833,6 @@ GST_START_TEST (test_segment_base_handling)
 }
 
 GST_END_TEST;
-#endif
 
 static Suite *
 audiomixer_suite (void)
@@ -1859,9 +1857,7 @@ audiomixer_suite (void)
   tcase_add_test (tc_chain, test_sync);
   tcase_add_test (tc_chain, test_sync_discont);
   tcase_add_test (tc_chain, test_sync_unaligned);
-#ifndef GST_DISABLE_PARSE
   tcase_add_test (tc_chain, test_segment_base_handling);
-#endif
 
   /* Use a longer timeout */
 #ifdef HAVE_VALGRIND
index 0e7380f..dab259b 100644 (file)
@@ -1035,7 +1035,6 @@ GST_START_TEST (test_flush_start_flush_stop)
 
 GST_END_TEST;
 
-#ifndef GST_DISABLE_PARSE
 GST_START_TEST (test_segment_base_handling)
 {
   GstElement *pipeline, *sink, *mix, *src1, *src2;
@@ -1096,7 +1095,6 @@ GST_START_TEST (test_segment_base_handling)
 }
 
 GST_END_TEST;
-#endif
 
 static Suite *
 compositor_suite (void)
@@ -1116,9 +1114,7 @@ compositor_suite (void)
   tcase_add_test (tc_chain, test_duration_unknown_overrides);
   tcase_add_test (tc_chain, test_loop);
   tcase_add_test (tc_chain, test_flush_start_flush_stop);
-#ifndef GST_DISABLE_PARSE
   tcase_add_test (tc_chain, test_segment_base_handling);
-#endif
 
   /* Use a longer timeout */
 #ifdef HAVE_VALGRIND