selftest: enable FAIL_IMMEDIATELY in autobuild make test
authorAndrew Tridgell <tridge@samba.org>
Tue, 28 Sep 2010 18:23:35 +0000 (11:23 -0700)
committerAndrew Tridgell <tridge@samba.org>
Tue, 28 Sep 2010 18:36:40 +0000 (11:36 -0700)
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

script/autobuild.py

index 5d7228b05153c5f52d3dda5c58336ed44cf064ef..2a627ad28a08e627d9307c5d5a04b8dad418aa1a 100755 (executable)
@@ -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}",