summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2018-03-04 21:32:09 +1300
committerAndrew Bartlett <abartlet@samba.org>2018-03-27 23:03:13 +0200
commite4a969ccc55758b402483e7e1b31ab054624c6c5 (patch)
tree65cbf888526e16dbd9bf7bb06d03e6e31f5c6624 /script
parentd47fb2232bdbbc401d59b86d2641078c6e7bfdc6 (diff)
downloadsamba-e4a969ccc55758b402483e7e1b31ab054624c6c5.tar.gz
autobuild: Remove fileserver tests from the main build
Again, this is to allow these to run in the 50min timelimit of travis-ci and so gain test coverage. Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Gary Lockyer <gary@catalyst.net.nz>
Diffstat (limited to 'script')
-rwxr-xr-xscript/autobuild.py13
1 files changed, 12 insertions, 1 deletions
diff --git a/script/autobuild.py b/script/autobuild.py
index 0294afaae3e..7b3d4bf6b35 100755
--- a/script/autobuild.py
+++ b/script/autobuild.py
@@ -27,6 +27,7 @@ builddirs = {
"ctdb" : "ctdb",
"samba" : ".",
"samba-nt4" : ".",
+ "samba-fileserver" : ".",
"samba-xc" : ".",
"samba-o3" : ".",
"samba-ctdb" : ".",
@@ -51,6 +52,7 @@ builddirs = {
defaulttasks = [ "ctdb",
"samba",
"samba-nt4",
+ "samba-fileserver",
"samba-xc",
"samba-o3",
"samba-ctdb",
@@ -101,7 +103,9 @@ tasks = {
"TESTS='--exclude-env=none "
"--exclude-env=nt4_dc "
"--exclude-env=nt4_member "
- "--exclude-env=ad_dc ", "text/plain"),
+ "--exclude-env=ad_dc "
+ "--exclude-env=fileserver'",
+ "text/plain"),
("install", "make install", "text/plain"),
("check-clean-tree", "script/clean-source-tree.sh", "text/plain"),
("clean", "make clean", "text/plain") ],
@@ -115,6 +119,13 @@ tasks = {
("clean", "make clean", "text/plain") ],
# We split out this so the isolated ad_dc tests do not wait for ad_dc_ntvfs tests (which are long)
+ "samba-fileserver" : [ ("random-sleep", "../script/random-sleep.sh 60 600", "text/plain"),
+ ("configure", "./configure.developer --with-selftest-prefix=./bin/ab" + samba_configure_params, "text/plain"),
+ ("make", "make -j", "text/plain"),
+ ("test", "make test FAIL_IMMEDIATELY=1 TESTS='--include-env=fileserver'", "text/plain"),
+ ("check-clean-tree", "script/clean-source-tree.sh", "text/plain")],
+
+ # We split out this so the isolated ad_dc tests do not wait for ad_dc_ntvfs tests (which are long)
"samba-ad-dc" : [ ("random-sleep", "../script/random-sleep.sh 60 600", "text/plain"),
("configure", "./configure.developer --with-selftest-prefix=./bin/ab" + samba_configure_params, "text/plain"),
("make", "make -j", "text/plain"),