From 2a97d699a87b2e474885b57de92741951e042770 Mon Sep 17 00:00:00 2001 From: Andrew Wood Date: Wed, 4 Dec 2024 22:05:17 +0000 Subject: [PATCH] Minor updates. --- docs/test-on-vm-lab.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/test-on-vm-lab.sh b/docs/test-on-vm-lab.sh index 58d85d4..24f3078 100755 --- a/docs/test-on-vm-lab.sh +++ b/docs/test-on-vm-lab.sh @@ -5,6 +5,8 @@ # ~/.config/lab-hosts. They need to be reachable over SSH with no password. # # Displays progress to the terminal and produces a tarball of results. +# +# Requires "scw" (https://www.ivarch.com/programs/scw.shtml). labHosts="$(cat ~/.config/lab-hosts)" @@ -78,7 +80,7 @@ for remoteHost in ${hostList}; do printf '%s %s\n' 'ok' 'build completed' >&3 printf '%s %s\n' 'notice' 'testing' >&3 - ssh "${remoteHost}" "cd \"${remoteBuildDir}/BUILD\" && make checkcc" || exit \$? + ssh "${remoteHost}" "cd \"${remoteBuildDir}/BUILD\" && make check" || exit \$? printf '%s %s\n' 'ok' 'testing completed' >&3 exit 0