1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-02 09:47:23 +03:00

s4-torture: move torture_assert_sid_equal() out of ndr headers.

Guenther

Signed-off-by: Günther Deschner <gd@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
This commit is contained in:
Günther Deschner 2015-06-26 00:48:03 +02:00
parent 34e4dac57b
commit 6aeb0a08ab
2 changed files with 10 additions and 10 deletions

View File

@ -500,6 +500,16 @@ void torture_result(struct torture_context *test,
}\
} while(0)
#define torture_assert_sid_equal(torture_ctx,got,expected,cmt)\
do { struct dom_sid *__got = (got), *__expected = (expected); \
if (!dom_sid_equal(__got, __expected)) { \
torture_result(torture_ctx, TORTURE_FAIL, \
__location__": "#got" was %s, expected %s: %s", \
dom_sid_string(torture_ctx, __got), dom_sid_string(torture_ctx, __expected), cmt); \
return false; \
} \
} while(0)
#define torture_assert_not_null(torture_ctx,got,cmt)\
do { void *__got = (got); \
if (__got == NULL) { \

View File

@ -73,14 +73,4 @@ _PUBLIC_ struct torture_test *_torture_suite_add_ndr_pull_inout_test(
sizeof(struct name), \
(bool (*) (struct torture_context *, void *)) check_fn_out);
#define torture_assert_sid_equal(torture_ctx,got,expected,cmt)\
do { struct dom_sid *__got = (got), *__expected = (expected); \
if (!dom_sid_equal(__got, __expected)) { \
torture_result(torture_ctx, TORTURE_FAIL, \
__location__": "#got" was %s, expected %s: %s", \
dom_sid_string(torture_ctx, __got), dom_sid_string(torture_ctx, __expected), cmt); \
return false; \
} \
} while(0)
#endif /* __TORTURE_NDR_H__ */