fix(tests): fix testrunner for 'all'

This commit is contained in:
Okke Formsma 2020-11-23 21:55:04 +01:00 committed by Pete Johanson
parent 248b360f47
commit db10931439

View file

@ -4,14 +4,13 @@
#
# SPDX-License-Identifier: MIT
#
if [ -z "$1" ]; then
echo "Usage: ./run-test.sh <path to testcase>"
exit 1
fi
path="$1"
if [ path = "all" ]; then
if [ $path = "all" ]; then
path="tests"
fi