summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xapp/run-test.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/run-test.sh b/app/run-test.sh
index 89d0f18..ea3f91b 100755
--- a/app/run-test.sh
+++ b/app/run-test.sh
@@ -27,7 +27,7 @@ fi
testcase="$path"
echo "Running $testcase:"
-west build -d build/$testcase -b native_posix -- -DZMK_CONFIG=$testcase > /dev/null 2>&1
+west build -d build/$testcase -b native_posix -- -DZMK_CONFIG="$(pwd)/$testcase" > /dev/null 2>&1
if [ $? -gt 0 ]; then
echo "FAIL: $testcase did not build" >> ./build/tests/pass-fail.log
exit 1