From: Ralph Boehme Date: Mon, 23 Jan 2017 16:35:51 +0000 (+0100) Subject: selftest: also run test base.createx_access against ad_dc X-Git-Tag: samba-4.4.10~34 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=90c819aa8daeb0e66ddfb2bdd0a72af9faefb9f9;p=thirdparty%2Fsamba.git selftest: also run test base.createx_access against ad_dc Fails currently, will be made to work in the next commit. Bug: https://bugzilla.samba.org/show_bug.cgi?id=12536 Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison (cherry picked from commit a3781d1cfe7d5e7df20fc65a9a7653937f03808c) --- diff --git a/selftest/knownfail b/selftest/knownfail index 778cb339a0f..48d17bb22ec 100644 --- a/selftest/knownfail +++ b/selftest/knownfail @@ -56,6 +56,7 @@ ^samba3.raw.acls nfs4acl_xattr-special.inherit_creator_group\(nt4_dc\) ^samba3.base.delete.deltest16a ^samba3.base.delete.deltest17a +^samba3.base.createx_access.createx_access\(ad_dc\) ^samba3.unix.whoami anonymous connection.whoami\(ad_dc\) # We need to resolve if we should be including SID_NT_WORLD and SID_NT_NETWORK in this token ^samba3.unix.whoami anonymous connection.whoami\(ad_member\) # smbd maps anonymous logins to domain guest in the local domain, not SID_NT_ANONYMOUS # these show that we still have some differences between our system diff --git a/source3/selftest/tests.py b/source3/selftest/tests.py index 313754a0e36..fd4f6156cd0 100755 --- a/source3/selftest/tests.py +++ b/source3/selftest/tests.py @@ -265,7 +265,7 @@ plantestsuite("samba3.async_req", "nt4_dc", #smbtorture4 tests -base = ["base.attr", "base.charset", "base.chkpath", "base.defer_open", "base.delaywrite", "base.delete", +base = ["base.attr", "base.charset", "base.chkpath", "base.createx_access", "base.defer_open", "base.delaywrite", "base.delete", "base.deny1", "base.deny2", "base.deny3", "base.denydos", "base.dir1", "base.dir2", "base.disconnect", "base.fdpass", "base.lock", "base.mangle", "base.negnowait", "base.ntdeny1", @@ -321,6 +321,8 @@ tests= base + raw + smb2 + rpc + unix + local + rap + nbt + libsmbclient + idmap for t in tests: if t == "base.delaywrite": plansmbtorture4testsuite(t, "ad_dc", '//$SERVER/tmp -U$USERNAME%$PASSWORD -k yes --maximum-runtime=900') + if t == "base.createx_access": + plansmbtorture4testsuite(t, "ad_dc", '//$SERVER/tmp -U$USERNAME%$PASSWORD -k yes --maximum-runtime=900') elif t == "rap.sam": plansmbtorture4testsuite(t, "nt4_dc", '//$SERVER_IP/tmp -U$USERNAME%$PASSWORD --option=doscharset=ISO-8859-1') plansmbtorture4testsuite(t, "ad_dc", '//$SERVER_IP/tmp -U$USERNAME%$PASSWORD --option=doscharset=ISO-8859-1')