From: Andrew Bartlett Date: Sat, 21 Mar 2020 19:29:33 +0000 (+1300) Subject: selftest: Run smb2.compound_find against filesrever only, not nt4_dc and ad_dc X-Git-Tag: ldb-2.2.0~1284 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=88c4305ffb208895df2899610a8b9310d3836e2d;p=thirdparty%2Fsamba.git selftest: Run smb2.compound_find against filesrever only, not nt4_dc and ad_dc This is a slow test of SMB2 protocol features, it needs not to be repeated. It only got run against both by accident at the original merge and then extended to run on the [compount_find] share (with smbd:find async delay usec = 10000) but really does not need to be run three times. Signed-off-by: Andrew Bartlett Reviewed-by: Andreas Schneider --- diff --git a/source3/selftest/tests.py b/source3/selftest/tests.py index 9e44c091147..a3f60aa4b0c 100755 --- a/source3/selftest/tests.py +++ b/source3/selftest/tests.py @@ -710,9 +710,8 @@ for t in tests: elif t == "vfs.acl_xattr": plansmbtorture4testsuite(t, "nt4_dc", '//$SERVER_IP/tmp -U$USERNAME%$PASSWORD') elif t == "smb2.compound_find": - plansmbtorture4testsuite(t, "nt4_dc", '//$SERVER/compound_find -U$USERNAME%$PASSWORD') - plansmbtorture4testsuite(t, "nt4_dc", '//$SERVER_IP/tmp -U$USERNAME%$PASSWORD') - plansmbtorture4testsuite(t, "ad_dc", '//$SERVER/tmp -U$USERNAME%$PASSWORD') + plansmbtorture4testsuite(t, "fileserver", '//$SERVER/compound_find -U$USERNAME%$PASSWORD') + plansmbtorture4testsuite(t, "fileserver", '//$SERVER_IP/tmp -U$USERNAME%$PASSWORD') elif t == "rpc.samr.users.privileges": plansmbtorture4testsuite(t, "nt4_dc", '//$SERVER_IP/tmp -U$USERNAME%$PASSWORD --option=torture:nt4_dc=true') plansmbtorture4testsuite(t, "ad_dc", '//$SERVER/tmp -U$USERNAME%$PASSWORD')