From: Noel Power Date: Tue, 3 Mar 2020 17:24:36 +0000 (+0000) Subject: s4/selftest: Move failing samba4.rpc.authcontext.* (ad_dc) to ad_dc_smb1 X-Git-Tag: ldb-2.2.0~1069 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b056425340281604ae6e62786a209bf16efddebb;p=thirdparty%2Fsamba.git s4/selftest: Move failing samba4.rpc.authcontext.* (ad_dc) to ad_dc_smb1 Move samba4.rpc.authcontext with bigendian(ad_dc) samba4.rpc.authcontext with seal,padcheck(ad_dc) samba4.rpc.authcontext with validate(ad_dc) to ad_dc_smb1 environment and remove the corrosponding entries in skip_smb1_fail Signed-off-by: Noel Power Reviewed-by: Ralph Boehme --- diff --git a/selftest/skip_smb1_fails b/selftest/skip_smb1_fails index dc60c185469..8817b3d51c6 100644 --- a/selftest/skip_smb1_fails +++ b/selftest/skip_smb1_fails @@ -173,9 +173,6 @@ ^samba4.blackbox.smbclient\(ad_member:local\)\(ad_member:local\) ^samba4.blackbox.smbclient\(chgdcpass:local\)\(chgdcpass:local\) ^samba4.ldap.nested-search\(ad_dc_default\) -^samba4.rpc.authcontext with bigendian\(ad_dc\) -^samba4.rpc.authcontext with seal,padcheck\(ad_dc\) -^samba4.rpc.authcontext with validate\(ad_dc\) ^samba4.rpc.join on ncacn_ip_tcp with bigendian\(ad_dc_default\) ^samba4.rpc.join on ncacn_ip_tcp with seal,padcheck\(ad_dc_default\) ^samba4.rpc.join on ncacn_ip_tcp with validate\(ad_dc_default\) diff --git a/source4/selftest/tests.py b/source4/selftest/tests.py index a5771461847..69fdd174eeb 100755 --- a/source4/selftest/tests.py +++ b/source4/selftest/tests.py @@ -216,6 +216,8 @@ for bindoptions in ["seal,padcheck"] + validate_list + ["bigendian"]: for t in ncacn_np_tests: env = "ad_dc" transport = "ncacn_np" + if t == "rpc.authcontext": + env = "ad_dc_smb1" plansmbtorture4testsuite(t, env, ["%s:$SERVER[%s]" % (transport, bindoptions), '-U$USERNAME%$PASSWORD', '--workgroup=$DOMAIN'], "samba4.%s with %s" % (t, bindoptions)) for bindoptions in [""] + validate_list + ["bigendian"]: