[gst-cvs] gnonlin: checks: Don't check for gstreamer 0.10.4 anymore.

Edward Hervey bilboed at kemper.freedesktop.org
Sun May 31 03:45:18 PDT 2009


Module: gnonlin
Branch: master
Commit: 43cd792c2da25a61068befaafe87cc83d58842c1
URL:    http://cgit.freedesktop.org/gstreamer/gnonlin/commit/?id=43cd792c2da25a61068befaafe87cc83d58842c1

Author: Edward Hervey <bilboed at bilboed.com>
Date:   Fri May 29 19:35:52 2009 +0200

checks: Don't check for gstreamer 0.10.4 anymore.

We already depend on a much recent version.

---

 tests/check/complex.c |   15 +++++----------
 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)
 {
   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);
-  }
+  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;
 }
 





More information about the Gstreamer-commits mailing list