summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorRalph Boehme <slow@samba.org>2019-11-25 16:14:49 +0100
committerRalph Boehme <slow@samba.org>2019-12-20 06:08:40 +0000
commit7974e55024f9d0479a375ffc990293941ff90303 (patch)
tree597e83ef209b30d124c5650238d99f124d02d62a /source4
parent9174968b01565a13b046a14a46e9cb77ea4cb5c2 (diff)
downloadsamba-7974e55024f9d0479a375ffc990293941ff90303.tar.gz
selftest: run rpc.srvsvc and rpc.mgmt against ad_dc_ntvfs explicitly
No change in behaviour. Signed-off-by: Ralph Boehme <slow@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'source4')
-rwxr-xr-xsource4/selftest/tests.py5
1 files changed, 4 insertions, 1 deletions
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)