summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2019-02-21 08:37:53 +0100
committerStefan Metzmacher <metze@samba.org>2019-02-27 10:16:10 +0000
commit3cf317c9b866dd9820039669769af26a1195db7a (patch)
tree751505a302bae31f8bb99b4117479ef8e75c4ff1 /script
parentcd42d70d491586b83f97100c10e1039c542d3b29 (diff)
downloadsamba-3cf317c9b866dd9820039669769af26a1195db7a.tar.gz
autobuild: move nt4_dc_schannel out of 'samba'
Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'script')
-rwxr-xr-xscript/autobuild.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/script/autobuild.py b/script/autobuild.py
index 0d49891c39c..5c4d1a4beda 100755
--- a/script/autobuild.py
+++ b/script/autobuild.py
@@ -92,6 +92,7 @@ tasks = {
("test", "make test FAIL_IMMEDIATELY=1 "
"TESTS='--exclude-env=none "
"--exclude-env=nt4_dc "
+ "--exclude-env=nt4_dc_schannel "
"--exclude-env=nt4_member "
"--exclude-env=ad_dc "
"--exclude-env=ad_dc_backup "
@@ -124,7 +125,11 @@ tasks = {
("configure", "./configure.developer --without-ads --with-selftest-prefix=./bin/ab" + samba_configure_params, "text/plain"),
("make", "make -j", "text/plain"),
("test", "make test FAIL_IMMEDIATELY=1 "
- "TESTS='--include-env=nt4_dc --include-env=nt4_member'", "text/plain"),
+ "TESTS='"
+ "--include-env=nt4_dc "
+ "--include-env=nt4_dc_schannel "
+ "--include-env=nt4_member "
+ "'", "text/plain"),
("install", "make install", "text/plain"),
("check-clean-tree", "script/clean-source-tree.sh", "text/plain"),
("clean", "make clean", "text/plain")],