summaryrefslogtreecommitdiff
path: root/script/autobuild.py
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-09-28 11:23:35 -0700
committerAndrew Tridgell <tridge@samba.org>2010-09-28 11:36:40 -0700
commit00611cbcf6ea2da2b0b9179c9ef8e3bd27555c5c (patch)
tree0f18e38b9dca804203ad2183cee43b89a4019061 /script/autobuild.py
parentf4177b66c5b9351cf36b09f6b55b042985d633f0 (diff)
downloadsamba-00611cbcf6ea2da2b0b9179c9ef8e3bd27555c5c.tar.gz
samba-00611cbcf6ea2da2b0b9179c9ef8e3bd27555c5c.tar.bz2
samba-00611cbcf6ea2da2b0b9179c9ef8e3bd27555c5c.zip
selftest: enable FAIL_IMMEDIATELY in autobuild make test
this should reduce the time we wait for previous failing builds. Right now this will only work for s4, as we need a makefile change for s3 support
Diffstat (limited to 'script/autobuild.py')
-rwxr-xr-xscript/autobuild.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/script/autobuild.py b/script/autobuild.py
index 5d7228b051..2a627ad28a 100755
--- a/script/autobuild.py
+++ b/script/autobuild.py
@@ -21,13 +21,13 @@ tasks = {
"make basics",
"make -j 4 everything", # don't use too many processes
"make install",
- "TDB_NO_FSYNC=1 make test" ],
+ "TDB_NO_FSYNC=1 make test FAIL_IMMEDIATELY=1" ],
"source4" : [ "./autogen.sh",
"./configure.developer ${PREFIX}",
"make -j",
"make install",
- "TDB_NO_FSYNC=1 make test" ],
+ "TDB_NO_FSYNC=1 make test FAIL_IMMEDIATELY=1" ],
"source4/lib/ldb" : [ "./autogen-waf.sh",
"./configure --enable-developer -C ${PREFIX}",