diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-07-22 12:32:15 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-08-03 18:48:03 +1000 |
commit | 779573a5b3c6b8e91a08cc08ff516a957e539722 (patch) | |
tree | 4023a823b5b7a3d384015993b97445e66194d1cd /source4/selftest | |
parent | 4806eda36c872462b4074601e64148bbd467350b (diff) | |
download | samba-779573a5b3c6b8e91a08cc08ff516a957e539722.tar.gz samba-779573a5b3c6b8e91a08cc08ff516a957e539722.tar.bz2 samba-779573a5b3c6b8e91a08cc08ff516a957e539722.zip |
selftest: Test encrypted RPC pipes against plugin_s4_dc
Signed-off-by: Andrew Tridgell <tridge@samba.org>
Diffstat (limited to 'source4/selftest')
-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: |