diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-01-09 10:49:49 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-01-09 10:56:28 +1100 |
commit | 1a41f728611c283386b41fca5dfadad0aff3c8f5 (patch) | |
tree | 27448973305074a6c63985a8c0b74bc0a4cd9799 /source3/selftest | |
parent | 4b9d52d735ae6bb2be4573441bd15b4291c83c42 (diff) | |
download | samba-1a41f728611c283386b41fca5dfadad0aff3c8f5.tar.gz |
s3-selftst Add encrypted CIFS testing with kerberos
Diffstat (limited to 'source3/selftest')
-rwxr-xr-x | source3/selftest/tests.py | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/source3/selftest/tests.py b/source3/selftest/tests.py index 33a2410e920..86fc8d11b25 100755 --- a/source3/selftest/tests.py +++ b/source3/selftest/tests.py @@ -305,15 +305,17 @@ for z in smb_options: if have_ads_support: - plantestsuite("samba3.blackbox.smbclient_krb5 with old ccache", "ktest:local", - [os.path.join(samba3srcdir, "script/tests/test_smbclient_krb5.sh"), - "$PREFIX/ktest/krb5_ccache-2", - binpath('smbclient3'), "$SERVER", configuration]) - - plantestsuite("samba3.blackbox.smbclient_krb5", "ktest:local", - [os.path.join(samba3srcdir, "script/tests/test_smbclient_krb5.sh"), - "$PREFIX/ktest/krb5_ccache-3", - binpath('smbclient3'), "$SERVER", configuration]) + options_list = ["", "-E"] + for options in options_list: + plantestsuite("samba3.blackbox.smbclient_krb5 old ccache %s" % options, "ktest:local", + [os.path.join(samba3srcdir, "script/tests/test_smbclient_krb5.sh"), + "$PREFIX/ktest/krb5_ccache-2", + binpath('smbclient3'), "$SERVER", options, configuration]) + + plantestsuite("samba3.blackbox.smbclient_krb5 %s" % options, "ktest:local", + [os.path.join(samba3srcdir, "script/tests/test_smbclient_krb5.sh"), + "$PREFIX/ktest/krb5_ccache-3", + binpath('smbclient3'), "$SERVER", options, configuration]) for e in endianness_options: for a in auth_options: |