summaryrefslogtreecommitdiff
path: root/source4/torture/ndr
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2015-06-26 16:46:11 +0200
committerGünther Deschner <gd@samba.org>2015-07-03 02:00:27 +0200
commitf0156ca154546e666bbc715500e18c0f11961a38 (patch)
tree2f429f6e3c2be52930430d39fca4c02338e4adc9 /source4/torture/ndr
parent6d3f7620d2ed0cdc7183d01eff8a0ac2fb55e788 (diff)
downloadsamba-f0156ca154546e666bbc715500e18c0f11961a38.tar.gz
s4-torture: add new torture_suite_add_ndr_pullpush_fn_test_flags().
Guenther Signed-off-by: Günther Deschner <gd@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source4/torture/ndr')
-rw-r--r--source4/torture/ndr/ndr.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/source4/torture/ndr/ndr.h b/source4/torture/ndr/ndr.h
index d3a6492b64e..b08383b4345 100644
--- a/source4/torture/ndr/ndr.h
+++ b/source4/torture/ndr/ndr.h
@@ -79,6 +79,15 @@ _PUBLIC_ struct torture_test *_torture_suite_add_ndr_pull_inout_test(
NDR_SCALARS|NDR_BUFFERS, 0, \
(bool (*) (struct torture_context *, void *)) check_fn);
+#define torture_suite_add_ndr_pullpush_fn_test_flags(suite,name,data,flags,flags2,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_const(data, sizeof(data)), \
+ sizeof(struct name), \
+ flags, flags2, \
+ (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", \
(ndr_pull_flags_fn_t)ndr_pull_ ## name, \