From: Ralph Boehme Date: Mon, 25 Nov 2019 15:14:49 +0000 (+0100) Subject: selftest: run rpc.srvsvc and rpc.mgmt against ad_dc_ntvfs explicitly X-Git-Tag: ldb-2.1.0~210 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7974e55024f9d0479a375ffc990293941ff90303;p=thirdparty%2Fsamba.git selftest: run rpc.srvsvc and rpc.mgmt against ad_dc_ntvfs explicitly No change in behaviour. Signed-off-by: Ralph Boehme Reviewed-by: Andreas Schneider --- diff --git a/source4/selftest/tests.py b/source4/selftest/tests.py index 232ea47dd23..a3695be98e0 100755 --- a/source4/selftest/tests.py +++ b/source4/selftest/tests.py @@ -218,7 +218,10 @@ for bindoptions in ["seal,padcheck"] + validate_list + ["bigendian"]: for bindoptions in [""] + validate_list + ["bigendian"]: for t in auto_rpc_tests: - plansmbtorture4testsuite(t, "ad_dc_default", ["$SERVER[%s]" % bindoptions, '-U$USERNAME%$PASSWORD', '--workgroup=$DOMAIN'], "samba4.%s with %s" % (t, bindoptions)) + env = "ad_dc_default" + if t in ["rpc.srvsvc", "rpc.mgmt"]: + env = "ad_dc_ntvfs" + plansmbtorture4testsuite(t, env, ["$SERVER[%s]" % bindoptions, '-U$USERNAME%$PASSWORD', '--workgroup=$DOMAIN'], "samba4.%s with %s" % (t, bindoptions)) t = "rpc.countcalls" plansmbtorture4testsuite(t, "ad_dc_default:local", ["$SERVER[%s]" % bindoptions, '-U$USERNAME%$PASSWORD', '--workgroup=$DOMAIN'], modname="samba4.%s" % t)