From db10931439832643e8a5a29e5ff704642d9576ee Mon Sep 17 00:00:00 2001 From: Okke Formsma Date: Mon, 23 Nov 2020 21:55:04 +0100 Subject: [PATCH] fix(tests): fix testrunner for 'all' --- app/run-test.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/app/run-test.sh b/app/run-test.sh index bfb069db..89d0f181 100755 --- a/app/run-test.sh +++ b/app/run-test.sh @@ -4,15 +4,14 @@ # # SPDX-License-Identifier: MIT # - if [ -z "$1" ]; then echo "Usage: ./run-test.sh " exit 1 fi path="$1" -if [ path = "all" ]; then - path = "tests" +if [ $path = "all" ]; then + path="tests" fi testcases=$(find $path -name native_posix.keymap -exec dirname \{\} \;)