tests: remove GST_DISABLE_PARSE guards from two tests that don't require it

This commit is contained in:
Tim-Philipp Müller 2015-02-12 15:48:07 +00:00
parent 195e54e06a
commit 91ff1a2957

View 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