diff options
author | Stefan Metzmacher <metze@samba.org> | 2012-06-20 11:14:04 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-06-20 12:58:58 +0200 |
commit | c30e6b5973b78c04b9131a2adf1eb5dda2222c2f (patch) | |
tree | a227fce55eba26c72fd4ca668ce70c3a22f92373 /script | |
parent | fba51c82f35dae1a406d291614a0920cecef6e8c (diff) | |
download | samba-c30e6b5973b78c04b9131a2adf1eb5dda2222c2f.tar.gz samba-c30e6b5973b78c04b9131a2adf1eb5dda2222c2f.tar.bz2 samba-c30e6b5973b78c04b9131a2adf1eb5dda2222c2f.zip |
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
Diffstat (limited to 'script')
-rwxr-xr-x | script/autobuild.py | 2 |
1 files changed, 1 insertions, 1 deletions
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"), |