From: Martin Wilck <mwilck@xxxxxxxx> For function parameters, cmocka's check_expected() API should be used rather than will_return() / mock_type(). Signed-off-by: Martin Wilck <mwilck@xxxxxxxx> --- tests/test-log.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/test-log.c b/tests/test-log.c index d685d58..051491e 100644 --- a/tests/test-log.c +++ b/tests/test-log.c @@ -12,7 +12,7 @@ void __wrap_dlog (int sink, int prio, const char * fmt, ...) char buff[MAX_MSG_SIZE]; va_list ap; - assert_int_equal(prio, mock_type(int)); + check_expected(prio); va_start(ap, fmt); vsnprintf(buff, MAX_MSG_SIZE, fmt, ap); va_end(ap); @@ -21,7 +21,6 @@ void __wrap_dlog (int sink, int prio, const char * fmt, ...) void expect_condlog(int prio, char *string) { - will_return(__wrap_dlog, prio); + expect_value(__wrap_dlog, prio, prio); will_return(__wrap_dlog, string); } - -- 2.26.2 -- dm-devel mailing list dm-devel@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/dm-devel