diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-01-09 10:50:14 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-01-09 10:56:28 +1100 |
commit | c243bd2578026d28abfbb4e8a76fe7f008291466 (patch) | |
tree | 4ef23ce0a81be76477a9f64a239beaff7b058e70 /source3/selftest | |
parent | 1a41f728611c283386b41fca5dfadad0aff3c8f5 (diff) | |
download | samba-c243bd2578026d28abfbb4e8a76fe7f008291466.tar.gz samba-c243bd2578026d28abfbb4e8a76fe7f008291466.tar.bz2 samba-c243bd2578026d28abfbb4e8a76fe7f008291466.zip |
s3-sefltest Make krb5 tests contain the word krb5
Diffstat (limited to 'source3/selftest')
-rwxr-xr-x | source3/selftest/tests.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/selftest/tests.py b/source3/selftest/tests.py index 86fc8d11b2..dc0c32c052 100755 --- a/source3/selftest/tests.py +++ b/source3/selftest/tests.py @@ -291,16 +291,16 @@ for z in smb_options: a = "" binding_string = "ncacn_np:$SERVER[%s%s%s%s]" % (a, s, z, e) options = binding_string + " -k yes --krb5-ccache=$PREFIX/ktest/krb5_ccache-2" - plansmbtorturetestsuite(test, "ktest", options, 'over kerberos with old ccache ncacn_np with [%s%s%s%s] ' % (a, s, z, e)) + plansmbtorturetestsuite(test, "ktest", options, 'krb5 with old ccache ncacn_np with [%s%s%s%s] ' % (a, s, z, e)) options = binding_string + " -k yes --krb5-ccache=$PREFIX/ktest/krb5_ccache-3" - plansmbtorturetestsuite(test, "ktest", options, 'over kerberos ncacn_np with [%s%s%s%s] ' % (a, s, z, e)) + plansmbtorturetestsuite(test, "ktest", options, 'krb5 ncacn_np with [%s%s%s%s] ' % (a, s, z, e)) auth_options2 = ["krb5", "spnego,krb5"] for a in auth_options2: binding_string = "ncacn_np:$SERVER[%s%s%s%s]" % (a, s, z, e) - plantestsuite("samba3.blackbox.rpcclient over kerberos with ncacn_np with [%s%s%s%s] " % (a, s, z, e), "ktest:local", [os.path.join(samba3srcdir, "script/tests/test_rpcclient.sh"), + plantestsuite("samba3.blackbox.rpcclient krb5 ncacn_np with [%s%s%s%s] " % (a, s, z, e), "ktest:local", [os.path.join(samba3srcdir, "script/tests/test_rpcclient.sh"), "$PREFIX/ktest/krb5_ccache-3", binding_string, "-k", configuration]) |