This is an automated email from the git hooks/post-receive script.
ryan.arnold pushed a commit to branch ryanarn/reduced_parallel in repository toolchain/abe.
commit 873fd137c45cdfb7581307ea325309b4e4081690 Author: Ryan S. Arnold ryan.arnold@linaro.org Date: Fri Aug 7 17:59:00 2015 -0500
TESTING-ONLY jenkins.sh: abe's stdout & stderr combined. make check -j 1 on aa [...]
Change-Id: I096f4d62664d9b9a82187021c3c273a2aeca2210 --- jenkins.sh | 3 ++- lib/make.sh | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/jenkins.sh b/jenkins.sh index 41a33d7..13c3d9c 100755 --- a/jenkins.sh +++ b/jenkins.sh @@ -344,7 +344,8 @@ fi
# Now we build the cross compiler, for a native compiler this becomes # the stage2 bootstrap build. -$CONFIG_SHELL ${abe_dir}/abe.sh --disable update ${check} ${tars} ${releasestr} ${ [...] +#$CONFIG_SHELL ${abe_dir}/abe.sh --disable update ${check} ${tars} ${releasestr} $ [...] +$CONFIG_SHELL ${abe_dir}/abe.sh --disable update ${check} ${tars} ${releasestr} ${ [...]
# If abe returned an error, make jenkins see this as a build failure if test $? -gt 0; then diff --git a/lib/make.sh b/lib/make.sh index f810f3b..c86989e 100755 --- a/lib/make.sh +++ b/lib/make.sh @@ -738,6 +738,9 @@ make_check() local make_flags 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" ;; # Double parallelization when running tests on remote boards # to avoid host idling when waiting for the board. *) make_flags="${make_flags} -j $((2*${cpus}))" ;;