This is an automated email from the git hooks/post-receive script.
yvan.roux pushed a commit to branch yvan/validation-testing in repository toolchain/abe.
commit fca485b0afe0344c80e4aad20e32efbc708dce28 Author: Yvan Roux yvan.roux@linaro.org Date: Tue Aug 18 13:21:45 2015 +0200
VALIDATION TESTING:
Switch make check to -j 1 for x86_64 native builds jenkins.sh: even moree dejagnu verbosity
Change-Id: I076d518964014795b7987deac46c816b04e27c11 --- jenkins.sh | 2 +- lib/make.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/jenkins.sh b/jenkins.sh index 661c74a..e7aee89 100755 --- a/jenkins.sh +++ b/jenkins.sh @@ -343,7 +343,7 @@ fi (cd $user_snapshots/gcc.git; git fetch origin '+refs/changes/*:refs/remotes/gerrit [...]
# Turn on extra verbose dejagnu logging -export RUNTESTFLAGS="-v -v -d" +export RUNTESTFLAGS="-v -v -v -v -d"
# Now we build the cross compiler, for a native compiler this becomes # the stage2 bootstrap build. diff --git a/lib/make.sh b/lib/make.sh index c86989e..0693a96 100755 --- a/lib/make.sh +++ b/lib/make.sh @@ -739,8 +739,8 @@ make_check() case "${target}" in "$build"|*"-elf"*) make_flags="${make_flags} -j ${cpus}" ;; # Try to find out which test is crashing the aarch64-linux-gnu - # boards. - aarch64-linux-gnu) make_flags="${make_flags} -j 1" ;; + # boards and x86_64 builders. + aarch64-linux-gnu|x86_64*) make_flags="${make_flags} -j 1" ;; # Double parallelization when running tests on remote boards # to avoid host idling when waiting for the board. *) make_flags="${make_flags} -j $((2*${cpus}))" ;;