efl/eina tests: Allow libcheck 0.9.8 usage.
authorStefan Schmidt <stefan@datenfreihafen.org>
Fri, 18 Jan 2013 14:32:08 +0000 (14:32 +0000)
committerStefan Schmidt <stefan@datenfreihafen.org>
Fri, 18 Jan 2013 14:32:08 +0000 (14:32 +0000)
This commit is for all the poor souls that see no need to update their system
each day with everything the world may offer just to be sure they have the
latest. This commit is for people that like the idea of having something
working when it did so the day before. Kudos fot Tom for pointing out the
function.

SVN revision: 82980

src/tests/eina/eina_test_barrier.c

index d8e8791..59ce191 100644 (file)
@@ -65,10 +65,10 @@ START_TEST(eina_barrier_test_simple)
     int i;
 
     i = eina_init();
-    ck_assert_int_ge(i, 1);
+    _ck_assert_int(i, >=, 1);
 
     i = eina_threads_init();
-    ck_assert_int_ge(i, 1);
+    _ck_assert_int(i, >=, 1);
 
     r = eina_barrier_new(&barrier, 6);
     fail_unless(r);