summaryrefslogtreecommitdiff
path: root/source3/selftest
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-01-09 10:49:49 +1100
committerAndrew Bartlett <abartlet@samba.org>2012-01-09 10:56:28 +1100
commit1a41f728611c283386b41fca5dfadad0aff3c8f5 (patch)
tree27448973305074a6c63985a8c0b74bc0a4cd9799 /source3/selftest
parent4b9d52d735ae6bb2be4573441bd15b4291c83c42 (diff)
downloadsamba-1a41f728611c283386b41fca5dfadad0aff3c8f5.tar.gz
samba-1a41f728611c283386b41fca5dfadad0aff3c8f5.tar.bz2
samba-1a41f728611c283386b41fca5dfadad0aff3c8f5.zip
s3-selftst Add encrypted CIFS testing with kerberos
Diffstat (limited to 'source3/selftest')
-rwxr-xr-xsource3/selftest/tests.py20
1 files changed, 11 insertions, 9 deletions
diff --git a/source3/selftest/tests.py b/source3/selftest/tests.py
index 33a2410e92..86fc8d11b2 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: