aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYvan Roux <yvan.roux@linaro.org>2015-08-18 13:21:45 +0200
committerYvan Roux <yvan.roux@linaro.org>2015-08-18 13:21:45 +0200
commitfca485b0afe0344c80e4aad20e32efbc708dce28 (patch)
tree5221489377c6b137aa44eaae5d752eeea318bf0d
parent4de88af2856571b22566ba479075e37f3ba31cad (diff)
VALIDATION TESTING:yvan/validation-testing
Switch make check to -j 1 for x86_64 native builds jenkins.sh: even moree dejagnu verbosity Change-Id: I076d518964014795b7987deac46c816b04e27c11
-rwxr-xr-xjenkins.sh2
-rwxr-xr-xlib/make.sh4
2 files changed, 3 insertions, 3 deletions
diff --git a/jenkins.sh b/jenkins.sh
index 661c74aa..e7aee89b 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/changes/*')
# 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 c86989e6..0693a96a 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}))" ;;