From: Stefan Metzmacher Date: Wed, 20 Jun 2012 09:14:04 +0000 (+0200) Subject: script/autobuild: don't use 'make -j 4' for bin/smbtorture4 X-Git-Tag: samba-4.0.0beta3~312 X-Git-Url: http://git.samba.org/samba.git/?a=commitdiff_plain;h=c30e6b5973b78c04b9131a2adf1eb5dda2222c2f;p=metze%2Fsamba-autobuild%2F.git script/autobuild: don't use 'make -j 4' for bin/smbtorture4 The '4' has no effect there, which results in NUM_JOBS == NUM_CORES. metze --- diff --git a/script/autobuild.py b/script/autobuild.py index 817019fc894..c1edc92061b 100755 --- a/script/autobuild.py +++ b/script/autobuild.py @@ -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"),