fix: ensure the post-LAVA runner script uses correct binaries
At the moment the post-LAVA runner script assumes that all tests use
debug binaries, which is untrue. The newly-introduced `artefacts-lava`
directory contains the correct binaries.
Signed-off-by: Chris Kay <chris.kay@arm.com>
Change-Id: Ia1f1a0c775bbead4850b563b6456f906208d6e24
diff --git a/script/expect-post-runner.sh b/script/expect-post-runner.sh
index ea9a3ca..cb12c85 100755
--- a/script/expect-post-runner.sh
+++ b/script/expect-post-runner.sh
@@ -6,7 +6,7 @@
#
# Runner for scripts in expect-post/ directory. This script is intended
# to be run from Jenkins build, with $WORKSPACE set and per-UART test
-# plans prepare in artefacts/debug/run/. See expect-post/README.md for
+# plans prepare in artefacts-lava/run/. See expect-post/README.md for
# more info about post-expect scripts.
if [ -z "$WORKSPACE" ]; then
@@ -22,7 +22,7 @@
sudo DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt install -y expect ||
exit 1
-for uartdir in $WORKSPACE/artefacts/debug/run/uart*; do
+for uartdir in $WORKSPACE/artefacts-lava/run/uart*; do
# In case no dirs exist and the glob above isn't expanded at all.
if [ ! -d "$uartdir" ]; then
break