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
This commit is contained in:
Stefan Schmidt 2013-01-18 14:32:08 +00:00
parent fbb4e88925
commit 4d7909ae3a
1 changed files with 2 additions and 2 deletions

View 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);