diff options
author | Ralph Boehme <slow@samba.org> | 2017-02-23 22:20:39 +0100 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2017-04-18 22:54:17 +0200 |
commit | f775068c4091339cddb1fee278ac51423800c8cf (patch) | |
tree | 4bdf64c0d2353fbeca9f2f872f49123c2c3a2427 /source3 | |
parent | 26018947f9b2b1e7d45b54738710fb1d7a6a5ec6 (diff) | |
download | samba-f775068c4091339cddb1fee278ac51423800c8cf.tar.gz |
selftest: also run smb2.compound_find against share with async delay set
Add a share with "smbd:find async delay usec" set to 10000 and run the
test smb2.compound_find added in the previous commit against this new
share as well.
Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3')
-rwxr-xr-x | source3/selftest/tests.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/selftest/tests.py b/source3/selftest/tests.py index 395943923da..9bb7903ac32 100755 --- a/source3/selftest/tests.py +++ b/source3/selftest/tests.py @@ -452,6 +452,10 @@ for t in tests: plansmbtorture4testsuite(t, "nt4_dc", '//$SERVER/kernel_oplocks -U$USERNAME%$PASSWORD') 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') else: plansmbtorture4testsuite(t, "nt4_dc", '//$SERVER_IP/tmp -U$USERNAME%$PASSWORD') plansmbtorture4testsuite(t, "ad_dc", '//$SERVER/tmp -U$USERNAME%$PASSWORD') |