From 1a41f728611c283386b41fca5dfadad0aff3c8f5 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 9 Jan 2012 10:49:49 +1100 Subject: s3-selftst Add encrypted CIFS testing with kerberos --- source3/selftest/tests.py | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) (limited to 'source3/selftest/tests.py') 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: -- cgit