script/autobuild: don't use 'make -j 4' for bin/smbtorture4
authorStefan Metzmacher <metze@samba.org>
Wed, 20 Jun 2012 09:14:04 +0000 (11:14 +0200)
committerStefan Metzmacher <metze@samba.org>
Wed, 20 Jun 2012 10:58:58 +0000 (12:58 +0200)
The '4' has no effect there, which results in NUM_JOBS == NUM_CORES.

metze

script/autobuild.py

index 817019fc89454e7c81adf43555b2296b6ab31e76..c1edc92061b3c9eee274b9e4a8c788b5dd9cb118 100755 (executable)
@@ -40,7 +40,7 @@ tasks = {
                  # we split 'make -j 4', 'make bin/smbtorture4' and 'make -j 4 everything'
                  # because it makes it much easier to find errors.
                  ("make", "make -j 4", "text/plain"), # don't use too many processes
-                 ("make bin/smbtorture4", "make -j 4 bin/smbtorture4", "text/plain"),
+                 ("make bin/smbtorture4", "make bin/smbtorture4", "text/plain"),
                  ("make everything", "make -j 4 everything", "text/plain"),
                  ("install", "make install", "text/plain"),
                  ("test", "TDB_NO_FSYNC=1 make test FAIL_IMMEDIATELY=1", "text/plain"),