diff options
author | Stefan Metzmacher <metze@samba.org> | 2014-08-28 13:26:44 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2014-09-19 09:15:10 +0200 |
commit | 6975ff05ab952ddde9dd9044663e434b35b56fe0 (patch) | |
tree | e69d52c67af102568185dc031222542b79f55ab4 | |
parent | 4c64d41cfcb7b0bb30929aefd8bcd735449c83c3 (diff) | |
download | samba-6975ff05ab952ddde9dd9044663e434b35b56fe0.tar.gz samba-6975ff05ab952ddde9dd9044663e434b35b56fe0.tar.xz samba-6975ff05ab952ddde9dd9044663e434b35b56fe0.zip |
s3:selftest: run the smb2.replay test against the //$SERVER_IP/durable share
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
-rw-r--r-- | selftest/knownfail | 4 | ||||
-rwxr-xr-x | source3/selftest/tests.py | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/selftest/knownfail b/selftest/knownfail index 0b789c9d58..84e33b24f2 100644 --- a/selftest/knownfail +++ b/selftest/knownfail @@ -216,6 +216,10 @@ ^samba3.smb2.setinfo.setinfo ^samba3.smb2.session.*reauth5 # some special anonymous checks? ^samba3.smb2.compound.interim2 # wrong return code (STATUS_CANCELLED) +^samba3.smb2.replay.replay1 +^samba3.smb2.replay.replay2 +^samba3.smb2.replay.replay3 +^samba3.smb2.replay.replay4 ^samba3.raw.session.*reauth2 # maybe fix this? ^samba3.rpc.samr.passwords.badpwdcount.samr.badPwdCount\(s3dc\) # We fail this test currently ^samba3.rpc.samr.passwords.lockout.*\(s3dc\)$ # We fail this test currently diff --git a/source3/selftest/tests.py b/source3/selftest/tests.py index 97d05387d1..126c26c7d3 100755 --- a/source3/selftest/tests.py +++ b/source3/selftest/tests.py @@ -334,7 +334,7 @@ for t in tests: elif t == "rpc.samr.passwords.validate": plansmbtorture4testsuite(t, "s3dc", 'ncacn_ip_tcp:$SERVER_IP -U$USERNAME%$PASSWORD', 'over ncacn_ip_tcp ') plansmbtorture4testsuite(t, "plugin_s4_dc", 'ncacn_ip_tcp:$SERVER_IP -U$USERNAME%$PASSWORD', 'over ncacn_ip_tcp ') - elif t == "smb2.durable-open" or t == "smb2.durable-v2-open": + elif t == "smb2.durable-open" or t == "smb2.durable-v2-open" or t == "smb2.replay": plansmbtorture4testsuite(t, "s3dc", '//$SERVER_IP/durable -U$USERNAME%$PASSWORD') plansmbtorture4testsuite(t, "plugin_s4_dc", '//$SERVER_IP/durable -U$USERNAME%$PASSWORD') elif t == "base.rw1": |