Improve test script parameter naming

This commit is contained in:
Daniel 2020-05-02 13:20:41 +02:00
parent d1236bbe34
commit a3bbbc1ffa

7
test
View file

@ -12,9 +12,8 @@ function help {
echo "" echo ""
echo "commands:" echo "commands:"
echo " <none> run baseline tests" echo " <none> run baseline tests"
echo " all run all tests" echo " full run full tests (ie. not short)"
echo " install install deps for running baseline tests" echo " install install deps for running tests"
echo " install all install deps for running all tests"
echo "" echo ""
echo "options:" echo "options:"
echo " --scripted dont jump console lines (still use colors)" echo " --scripted dont jump console lines (still use colors)"
@ -97,7 +96,7 @@ while true; do
install=1 install=1
shift 1 shift 1
;; ;;
"all") "full")
fullTestFlags="" fullTestFlags=""
shift 1 shift 1
;; ;;