summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
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"),