From c30e6b5973b78c04b9131a2adf1eb5dda2222c2f Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 20 Jun 2012 11:14:04 +0200 Subject: 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 --- script/autobuild.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'script') diff --git a/script/autobuild.py b/script/autobuild.py index 817019fc89..c1edc92061 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"), -- cgit