aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@linaro.org>2015-10-01 11:45:48 +0200
committerChristophe Lyon <christophe.lyon@linaro.org>2015-10-01 11:45:48 +0200
commit470cbacfd6aaa13b1328e86160c52b40800d716a (patch)
tree266bfec0672ef9aea998710bc7aa58cf371a72a0
parenta57c0e93d42d99bd4b900262b1a403ae8b27a2f2 (diff)
Revert "Use make check -j2 when target is aarch64-linux."aarch64-test-02
This reverts commit 59a694c7d9109c72a0a2f69b3d540510542f5da6. Back to using -j8.
-rwxr-xr-xlib/make.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/make.sh b/lib/make.sh
index ff1dc5ee..c9d7c02e 100755
--- a/lib/make.sh
+++ b/lib/make.sh
@@ -752,7 +752,7 @@ make_check()
"$build"|*"-elf"*) make_flags="${make_flags} -j ${cpus}" ;;
# Try to make cross-testing results on the aarch64-linux-gnu
# boards stable: limit to the number of target cpus.
- aarch64-linux-gnu) make_flags="${make_flags} -j 2" ;;
+ aarch64-linux-gnu) make_flags="${make_flags} -j 8" ;;
# Double parallelization when running tests on remote boards
# to avoid host idling when waiting for the board.
*) make_flags="${make_flags} -j $((2*${cpus}))" ;;