1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

lib/torture: add torture_assert_mem_equal_goto

BUG: https://bugzilla.samba.org/show_bug.cgi?id=12427

Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Uri Simchoni <uri@samba.org>
This commit is contained in:
Ralph Boehme 2016-12-08 15:44:37 +01:00 committed by Uri Simchoni
parent 8ae4539e47
commit 49723151b2

View File

@ -357,6 +357,16 @@ void torture_result(struct torture_context *test,
} \
} while(0)
#define torture_assert_mem_equal_goto(torture_ctx,got,expected,len,ret,label,cmt) \
do { const void *__got = (got), *__expected = (expected); \
if (memcmp(__got, __expected, len) != 0) { \
torture_result(torture_ctx, TORTURE_FAIL, \
__location__": "#got" of len %d did not match "#expected": %s", (int)len, cmt); \
ret = false; \
goto label; \
} \
} while(0)
static inline void torture_dump_data_str_cb(const char *buf, void *private_data)
{
char **dump = (char **)private_data;