diff options
-rwxr-xr-x | source4/selftest/tests.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/source4/selftest/tests.py b/source4/selftest/tests.py index 9997628cee..01015f3293 100755 --- a/source4/selftest/tests.py +++ b/source4/selftest/tests.py @@ -134,10 +134,11 @@ for bindoptions in ["seal,padcheck"] + validate_list + ["bigendian"]: #Plugin S4 DC tests (confirms named pipe auth forwarding). This can be expanded once kerberos is supported in the plugin DC # -for t in [ "rpc.lsalookup", "rpc.lsa.secrets", "rpc.lsa-getuser", "rpc.handles", "rpc.asyncbind", "rpc.authcontext", "rpc.lsa"]: - env = "plugin_s4_dc" - transport = "ncacn_np" - plantestsuite_loadlist("samba4.%s" % (t), env, [valgrindify(smb4torture), "$LISTOPT", "%s:$SERVER" % (transport), '-U$USERNAME%$PASSWORD', '-W', '$DOMAIN', '-k', 'no', t]) +for bindoptions in ["seal,padcheck"] + validate_list + ["bigendian"]: + for t in [ "rpc.lsalookup", "rpc.lsa.secrets", "rpc.lsa-getuser", "rpc.handles", "rpc.asyncbind", "rpc.authcontext", "rpc.lsa"]: + env = "plugin_s4_dc" + transport = "ncacn_np" + plantestsuite_loadlist("samba4.%s with %s" % (t, bindoptions), env, [valgrindify(smb4torture), "$LISTOPT", "%s:$SERVER[%s]" % (transport, bindoptions), '-U$USERNAME%$PASSWORD', '-W', '$DOMAIN', '-k', 'no', t]) for bindoptions in [""] + validate_list + ["bigendian"]: for t in auto_rpc_tests: |