This is an automated email from the git hooks/post-receive script.
yvan.roux pushed a commit to branch ryanarn/reduced_parallel in repository toolchain/abe.
commit abfa1957a501c81ded6fb0fa084beade094b0a4a Author: Yvan Roux yvan.roux@linaro.org Date: Tue Aug 18 14:59:18 2015 +0200
Force verbosity and -j 1
Change-Id: I5b9d07c6816bbb5654da085d4923dbf3f2ff2156 --- lib/make.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/make.sh b/lib/make.sh index 0693a96..7cf2885 100755 --- a/lib/make.sh +++ b/lib/make.sh @@ -731,13 +731,13 @@ make_check() fi
if test x"${override_runtestflags}" != x; then - local make_flags="${make_flags} RUNTESTFLAGS="${override_runtestflags}"" + local make_flags="${make_flags} RUNTESTFLAGS="${override_runtestflags} -v [...] fi
if test x"${parallel}" = x"yes"; then local make_flags case "${target}" in - "$build"|*"-elf"*) make_flags="${make_flags} -j ${cpus}" ;; + "$build"|*"-elf"*) make_flags="${make_flags} -j 1" ;; # Try to find out which test is crashing the aarch64-linux-gnu # boards and x86_64 builders. aarch64-linux-gnu|x86_64*) make_flags="${make_flags} -j 1" ;;