summaryrefslogtreecommitdiff
path: root/tcwg-benchmark.sh
diff options
context:
space:
mode:
authorMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2022-05-18 16:46:22 +0000
committerMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2022-05-18 16:46:22 +0000
commite0ad973d7672fe58113320f376000a83f1b35f3e (patch)
treeb97d24d227461e9c43d55d1d23b82bc662cc06b5 /tcwg-benchmark.sh
parent1aa09915678a09932fbce85c48be69e782c73e4b (diff)
tcwg-benchmark.sh: Use ssh port specified in .ssh/config
... for calling prepare-board.sh . Change-Id: I54adab500dc83c35058cd8a75c90c81677fa8946
Diffstat (limited to 'tcwg-benchmark.sh')
-rwxr-xr-xtcwg-benchmark.sh13
1 files changed, 1 insertions, 12 deletions
diff --git a/tcwg-benchmark.sh b/tcwg-benchmark.sh
index 78635ca5..682864b8 100755
--- a/tcwg-benchmark.sh
+++ b/tcwg-benchmark.sh
@@ -347,24 +347,13 @@ if [ $res != 0 ]; then
exit $EXTERNAL_FAIL
fi
-# Launch prepare-board from docker host (only fx_* and apm_*)
-case "$hw_tag" in
- fx_*) ;&
- apm_*)
- prepare_board_port="2222"
- ;;
- *)
- prepare_board_port=""
- ;;
-esac
-
if $prepare_board; then
# FIXME: Implement more configurations and checks:
# disable swap
# set interrupt affinity
# check that there are no stray processes
# test that taskset works
- remote_exec "$boardname:$prepare_board_port::-t -Snone" \
+ remote_exec "$boardname:::-t -Snone" \
sudo /usr/local/bin/benchmark.sh --hw_tag "$hw_tag" \
--action start_board --verbose \
--image "linaro/ci-$image_arch-tcwg-build-ubuntu:$bench_container_tag" &