summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2021-08-11 15:57:46 +0000
committerMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2021-08-11 15:57:46 +0000
commitbc30ef39baae1db8fa6e58533ca20fdf78dca1e8 (patch)
treedfe3c339549892a1ae75854c5b0e225053084c28
parent84b46c4fdf2b792e44882309d39039ab58a0e823 (diff)
round-robin.sh (build_abe): Fix thinko
Change-Id: I3b6de00c4dc057d4d51b5e84d2a53a21fd9b3878
-rw-r--r--round-robin.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/round-robin.sh b/round-robin.sh
index cb0ed835..d75f6a02 100644
--- a/round-robin.sh
+++ b/round-robin.sh
@@ -239,7 +239,7 @@ build_abe ()
if [ x"$component" = x"check_gdb" ]; then
# Limit GDB testsuites to 16-thread parallelism. Running them
# with greater parallelism makes them too unstable.
- local cpus=$(cat abe/host.conf | sed -e "s/^cpus=\(.*\)/cpus=16/")
+ local cpus=$(cat abe/host.conf | sed -e "s/^cpus=\(.*\)/\1/")
if [ "$cpus" -gt 16 ]; then
sed -i -e "s/^cpus=.*/cpus=16/" abe/host.conf
fi