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.c5
1 files changed, 0 insertions, 5 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)
{
Suite *s = suite_create ("gnonlin");
TCase *tc_chain = tcase_create ("complex");
- guint major, minor, micro, nano;
suite_add_tcase (s, tc_chain);
- /* 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_space_another);
tcase_add_test (tc_chain, test_one_default_another);
tcase_add_test (tc_chain, test_renegotiation);
tcase_add_test (tc_chain, test_one_bin_space_another);
tcase_add_test (tc_chain, test_one_above_another);
- }
return s;
}