From 3b0c87cf319b562aeb1f5e12135905d6d57e926f Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Fri, 16 Jul 2010 22:46:58 +0200 Subject: s4-smbtorture: run all testcases with bigendian push as well in RPC-BIND. Guenther --- source4/torture/rpc/bind.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source4/torture') diff --git a/source4/torture/rpc/bind.c b/source4/torture/rpc/bind.c index c2bd60143d..f6470595e3 100644 --- a/source4/torture/rpc/bind.c +++ b/source4/torture/rpc/bind.c @@ -110,6 +110,9 @@ struct torture_suite *torture_rpc_bind(TALLOC_CTX *mem_ctx) for (i=0; i < ARRAY_SIZE(tests); i++) { test_bind_op(suite, tests[i].test_name, tests[i].flags); } + for (i=0; i < ARRAY_SIZE(tests); i++) { + test_bind_op(suite, talloc_asprintf(suite, "bigendian,%s", tests[i].test_name), tests[i].flags | DCERPC_PUSH_BIGENDIAN); + } return suite; } -- cgit