From: Andrew Bartlett Date: Tue, 28 Nov 2023 04:07:15 +0000 (+1300) Subject: selftest: Run samba.tests.gensec in an enviroment build also with MIT Krb5 X-Git-Tag: talloc-2.4.2~483 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=64212a371be2c262338d604944cc73b397913fdb;p=thirdparty%2Fsamba.git selftest: Run samba.tests.gensec in an enviroment build also with MIT Krb5 We would like confidence that the FAST hooks work with both implementations. Signed-off-by: Andrew Bartlett Reviewed-by: Douglas Bagnall --- diff --git a/source4/selftest/tests.py b/source4/selftest/tests.py index f5a4107aa52..b4198f3b08f 100755 --- a/source4/selftest/tests.py +++ b/source4/selftest/tests.py @@ -1092,7 +1092,11 @@ tdb_testenv = "ad_dc_ntvfs" for testenv in [mdb_testenv, tdb_testenv]: planoldpythontestsuite(testenv, "samba.tests.complex_expressions", extra_args=['-U"$USERNAME%$PASSWORD"']) -planoldpythontestsuite("ad_dc_default:local", "samba.tests.gensec", extra_args=['-U"$USERNAME%$PASSWORD"']) +# samba.tests.gensec is only run in ad_dc to ensure it runs with and +# MIT and Heimdal build, it can run against any environment that +# supports FAST +planoldpythontestsuite("ad_dc:local", "samba.tests.gensec", extra_args=['-U"$USERNAME%$PASSWORD"']) + planoldpythontestsuite("none", "simple", extra_path=["%s/lib/tdb/python/tests" % srcdir()], name="tdb.python") planpythontestsuite("ad_dc_default:local", "samba.tests.dcerpc.sam") planpythontestsuite("ad_dc_default:local", "samba.tests.dsdb")