mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
libndr: reformat libndr torture_suite macros to make differences more visible.
Guenther Signed-off-by: Günther Deschner <gd@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org>
This commit is contained in:
parent
c328ade5cd
commit
c82aed878e
@ -45,25 +45,39 @@ _PUBLIC_ struct torture_test *_torture_suite_add_ndr_pull_inout_test(
|
||||
|
||||
#define torture_suite_add_ndr_pull_test(suite,name,data,check_fn) \
|
||||
_torture_suite_add_ndr_pullpush_test(suite, #name, \
|
||||
(ndr_pull_flags_fn_t)ndr_pull_ ## name, NULL, data_blob_const(data, sizeof(data)), \
|
||||
sizeof(struct name), NDR_SCALARS|NDR_BUFFERS, 0, (bool (*) (struct torture_context *, void *)) check_fn);
|
||||
(ndr_pull_flags_fn_t)ndr_pull_ ## name, \
|
||||
NULL, \
|
||||
data_blob_const(data, sizeof(data)), \
|
||||
sizeof(struct name), \
|
||||
NDR_SCALARS|NDR_BUFFERS, 0, \
|
||||
(bool (*) (struct torture_context *, void *)) check_fn);
|
||||
|
||||
#define torture_suite_add_ndr_pull_fn_test(suite,name,data,flags,check_fn) \
|
||||
_torture_suite_add_ndr_pullpush_test(suite, #name "_" #flags, \
|
||||
(ndr_pull_flags_fn_t)ndr_pull_ ## name, NULL, data_blob_const(data, sizeof(data)), \
|
||||
sizeof(struct name), flags, 0, (bool (*) (struct torture_context *, void *)) check_fn);
|
||||
(ndr_pull_flags_fn_t)ndr_pull_ ## name, \
|
||||
NULL, \
|
||||
data_blob_const(data, sizeof(data)), \
|
||||
sizeof(struct name), \
|
||||
flags, 0, \
|
||||
(bool (*) (struct torture_context *, void *)) check_fn);
|
||||
|
||||
#define torture_suite_add_ndr_pull_fn_test_flags(suite,name,data,flags,flags2,check_fn) \
|
||||
_torture_suite_add_ndr_pullpush_test(suite, #name "_" #flags "_" #flags2, \
|
||||
(ndr_pull_flags_fn_t)ndr_pull_ ## name, NULL, data_blob_const(data, sizeof(data)), \
|
||||
sizeof(struct name), flags, flags2, (bool (*) (struct torture_context *, void *)) check_fn);
|
||||
(ndr_pull_flags_fn_t)ndr_pull_ ## name, \
|
||||
NULL, \
|
||||
data_blob_const(data, sizeof(data)), \
|
||||
sizeof(struct name), \
|
||||
flags, flags2, \
|
||||
(bool (*) (struct torture_context *, void *)) check_fn);
|
||||
|
||||
#define torture_suite_add_ndr_pullpush_test(suite,name,data_blob,check_fn) \
|
||||
_torture_suite_add_ndr_pullpush_test(suite, #name, \
|
||||
(ndr_pull_flags_fn_t)ndr_pull_ ## name, \
|
||||
(ndr_push_flags_fn_t)ndr_push_ ## name, \
|
||||
data_blob, \
|
||||
sizeof(struct name), NDR_SCALARS|NDR_BUFFERS, 0, (bool (*) (struct torture_context *, void *)) check_fn);
|
||||
sizeof(struct name), \
|
||||
NDR_SCALARS|NDR_BUFFERS, 0, \
|
||||
(bool (*) (struct torture_context *, void *)) check_fn);
|
||||
|
||||
#define torture_suite_add_ndr_pull_io_test(suite,name,data_in,data_out,check_fn_out) \
|
||||
_torture_suite_add_ndr_pull_inout_test(suite, #name "_INOUT", \
|
||||
|
Loading…
Reference in New Issue
Block a user