summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Hervey <bilboed@bilboed.com>2009-05-29 19:35:52 +0200
committerEdward Hervey <bilboed@bilboed.com>2009-05-30 18:00:07 +0200
commit43cd792c2da25a61068befaafe87cc83d58842c1 (patch)
tree1238f6a734374733478f4a0ae035cd6f341c820a
parenta09cac398f156c8d0e4899fdc28123acd3df9327 (diff)
checks: Don't check for gstreamer 0.10.4 anymore.
We already depend on a much recent version.
-rw-r--r--tests/check/complex.c15
1 files changed, 5 insertions, 10 deletions
diff --git a/tests/check/complex.c b/tests/check/complex.c
index bdfe3d6..06eca9e 100644
--- a/tests/check/complex.c
+++ b/tests/check/complex.c
@@ -929,19 +929,14 @@ gnonlin_suite (void)
929{ 929{
930 Suite *s = suite_create ("gnonlin"); 930 Suite *s = suite_create ("gnonlin");
931 TCase *tc_chain = tcase_create ("complex"); 931 TCase *tc_chain = tcase_create ("complex");
932 guint major, minor, micro, nano;
933 932
934 suite_add_tcase (s, tc_chain); 933 suite_add_tcase (s, tc_chain);
935 934
936 /* Only add the following test for core > 0.10.4 */ 935 tcase_add_test (tc_chain, test_one_space_another);
937 gst_version (&major, &minor, &micro, &nano); 936 tcase_add_test (tc_chain, test_one_default_another);
938 if ((micro > 4) || (micro == 4 && nano > 0)) { 937 tcase_add_test (tc_chain, test_renegotiation);
939 tcase_add_test (tc_chain, test_one_space_another); 938 tcase_add_test (tc_chain, test_one_bin_space_another);
940 tcase_add_test (tc_chain, test_one_default_another); 939 tcase_add_test (tc_chain, test_one_above_another);
941 tcase_add_test (tc_chain, test_renegotiation);
942 tcase_add_test (tc_chain, test_one_bin_space_another);
943 tcase_add_test (tc_chain, test_one_above_another);
944 }
945 return s; 940 return s;
946} 941}
947 942