summaryrefslogtreecommitdiff
path: root/tests/check/simple.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/check/simple.c')
-rw-r--r--tests/check/simple.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/tests/check/simple.c b/tests/check/simple.c
index c61f1a7..fbfff13 100644
--- a/tests/check/simple.c
+++ b/tests/check/simple.c
@@ -608,19 +608,13 @@ gnonlin_suite (void)
{
Suite *s = suite_create ("gnonlin");
TCase *tc_chain = tcase_create ("general");
- guint major, minor, micro, nano;
suite_add_tcase (s, tc_chain);
tcase_add_test (tc_chain, test_time_duration);
-
- /* Only add the following test for core > 0.10.4 */
- gst_version (&major, &minor, &micro, &nano);
- if ((micro > 4) || (micro == 4 && nano > 0)) {
- tcase_add_test (tc_chain, test_one_after_other);
- tcase_add_test (tc_chain, test_one_under_another);
- tcase_add_test (tc_chain, test_one_bin_after_other);
- }
+ tcase_add_test (tc_chain, test_one_after_other);
+ tcase_add_test (tc_chain, test_one_under_another);
+ tcase_add_test (tc_chain, test_one_bin_after_other);
return s;
}