diff options
-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 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: |