check: Bump version to 0.9.10 and change macro

Changing ck_assert_ptr_nonnull() to ck_assert_ptr_ne() in order to
require "only" check >= 0.9.10. ck_assert_ptr_nonnull() was
introduced in 0.11.0. ck_assert_ptr_ne() is already used a lot
in the test suite so a recent version of check is required.
This commit is contained in:
Jean-Philippe Andre 2017-05-30 11:02:05 +09:00
parent fa944c700e
commit bc38a4c639
2 changed files with 2 additions and 2 deletions

View File

@ -380,7 +380,7 @@ AM_CONDITIONAL([EFL_ENABLE_COVERAGE], [test "${want_coverage}" = "yes"])
# check unit testing library
if test "${want_tests}" = "yes"; then
PKG_CHECK_MODULES([CHECK], [check >= 0.9.5])
PKG_CHECK_MODULES([CHECK], [check >= 0.9.10])
fi
AM_CONDITIONAL([EFL_ENABLE_TESTS], [test "${want_tests}" = "yes"])

View File

@ -734,7 +734,7 @@ _message_signal_reply_cb(void *data, Evas_Object *obj EINA_UNUSED,
fprintf(stderr, "source %s emit %s id %d\n", source, emission, *id);
fflush(stderr);
ck_assert_str_eq(source, "edc");
ck_assert_ptr_nonnull(emission);
ck_assert_ptr_ne(emission, NULL);
if (!strncmp(emission, "int set", 7))
ck_assert_str_eq(emission, "int set 7 12 42 255");