From: Stefan Schmidt Date: Fri, 18 Jan 2013 14:32:08 +0000 (+0000) Subject: efl/eina tests: Allow libcheck 0.9.8 usage. X-Git-Tag: submit/devel/efl/20131022.203902~2164 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4d7909ae3ac81c199dc9ca9240652aa1cd106d82;p=platform%2Fupstream%2Fefl.git efl/eina tests: Allow libcheck 0.9.8 usage. 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 --- diff --git a/src/tests/eina/eina_test_barrier.c b/src/tests/eina/eina_test_barrier.c index d8e8791..59ce191 100644 --- a/src/tests/eina/eina_test_barrier.c +++ b/src/tests/eina/eina_test_barrier.c @@ -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);