From: Christof Schmitt Date: Wed, 30 Oct 2019 20:45:55 +0000 (-0700) Subject: autobuild: Add test for build with system heimdal library X-Git-Tag: talloc-2.3.1~50 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7965a204d68196acddf553959bb3407125baf31d;p=thirdparty%2Fsamba.git autobuild: Add test for build with system heimdal library The configure option --with-system-heimdalkrb5 requires --without-ad-dc. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14179 Signed-off-by: Christof Schmitt Reviewed-by: Andrew Bartlett --- diff --git a/script/autobuild.py b/script/autobuild.py index adeea22a34d..85167cfa993 100755 --- a/script/autobuild.py +++ b/script/autobuild.py @@ -125,6 +125,7 @@ builddirs = { "samba-mitkrb5": ".", "samba-nt4": ".", "samba-fileserver": ".", + "samba-ktest-heimdal": ".", "samba-admem": ".", "samba-admem-mit": ".", "samba-xc": ".", @@ -357,6 +358,17 @@ tasks = { ("check-clean-tree", "script/clean-source-tree.sh"), ], + "samba-ktest-heimdal": [ + ("random-sleep", random_sleep(300, 900)), + ("configure", "./configure.developer --without-ad-dc --with-system-heimdalkrb5 --with-selftest-prefix=./bin/ab" + samba_configure_params), + ("make", "make -j"), + ("test", make_test(include_envs=[ + "ktest", + ])), + ("lcov", LCOV_CMD), + ("check-clean-tree", "script/clean-source-tree.sh"), + ], + "samba-admem": [ ("random-sleep", random_sleep(300, 900)), ("configure", "./configure.developer --with-selftest-prefix=./bin/ab" + samba_configure_params),