Browse Source

fix(tests): fix testrunner for 'all'

xmkb
Okke Formsma 4 years ago committed by Pete Johanson
parent
commit
db10931439
  1. 3
      app/run-test.sh

3
app/run-test.sh

@ -4,14 +4,13 @@ @@ -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

Loading…
Cancel
Save