From: Christof Schmitt Date: Wed, 20 Sep 2017 23:13:38 +0000 (-0700) Subject: selftest: Also run smbtorture smb2.compound with aio enabled X-Git-Tag: samba-4.6.10~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8e338d8795346b1a06ff8e2365bd4df1cd693ce4;p=thirdparty%2Fsamba.git selftest: Also run smbtorture smb2.compound with aio enabled BUG: https://bugzilla.samba.org/show_bug.cgi?id=13047 Signed-off-by: Christof Schmitt Reviewed-by: Jeremy Allison Autobuild-User(master): Jeremy Allison Autobuild-Date(master): Fri Sep 22 09:49:30 CEST 2017 on sn-devel-144 (backported from commit 3a360f552d6641952931d3aa8a9ce85a648de3e1) --- diff --git a/selftest/knownfail b/selftest/knownfail index d16d7231711..713e39b8e27 100644 --- a/selftest/knownfail +++ b/selftest/knownfail @@ -170,6 +170,7 @@ ^samba3.smb2.setinfo.setinfo ^samba3.smb2.session.*reauth5 # some special anonymous checks? ^samba3.smb2.compound.interim2 # wrong return code (STATUS_CANCELLED) +^samba3.smb2.compound.aio.interim2 # wrong return code (STATUS_CANCELLED) ^samba3.smb2.replay.channel-sequence ^samba3.smb2.replay.replay3 ^samba3.smb2.replay.replay4 diff --git a/source3/selftest/tests.py b/source3/selftest/tests.py index fbd9a69bf20..c859a0b244f 100755 --- a/source3/selftest/tests.py +++ b/source3/selftest/tests.py @@ -463,6 +463,10 @@ for t in tests: plansmbtorture4testsuite(t, "fileserver", '//$SERVER_IP/tmp -U$USERNAME%$PASSWORD') elif t == "vfs.acl_xattr": plansmbtorture4testsuite(t, "nt4_dc", '//$SERVER_IP/tmp -U$USERNAME%$PASSWORD') + elif t == "smb2.compound": + plansmbtorture4testsuite(t, "nt4_dc", '//$SERVER_IP/tmp -U$USERNAME%$PASSWORD') + plansmbtorture4testsuite(t, "nt4_dc", '//$SERVER_IP/aio -U$USERNAME%$PASSWORD', 'aio') + 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')