1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-03 01:18:10 +03:00

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 <cs@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Christof Schmitt 2019-10-30 13:45:55 -07:00
parent 85d2323620
commit 7965a204d6

View File

@ -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),