Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass/tests: scons-utils.sh
Date: Mon, 07 Feb 2011 14:55:19
Message-Id: 20110207145508.F28FC20057@flycatcher.gentoo.org
1 mgorny 11/02/07 14:55:08
2
3 Modified: scons-utils.sh
4 Log:
5 Translate --jobs with no count to safer --jobs=5.
6
7 Value-less --jobs is mostly used along with --load-average, which is not supported by SCons. Thus, we should use a safe number of jobs.
8
9 Revision Changes Path
10 1.2 eclass/tests/scons-utils.sh
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/tests/scons-utils.sh?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/tests/scons-utils.sh?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/tests/scons-utils.sh?r1=1.1&r2=1.2
15
16 Index: scons-utils.sh
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/eclass/tests/scons-utils.sh,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- scons-utils.sh 7 Oct 2010 19:14:48 -0000 1.1
23 +++ scons-utils.sh 7 Feb 2011 14:55:08 -0000 1.2
24 @@ -22,7 +22,7 @@
25 }
26
27 # jobcount expected for non-specified state
28 -jc=255
29 +jc=5
30 # failed test counter
31 failed=0