From a3bbbc1ffadb1953a529c22624dc6edc74b5204d Mon Sep 17 00:00:00 2001 From: Daniel Date: Sat, 2 May 2020 13:20:41 +0200 Subject: [PATCH] Improve test script parameter naming --- test | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/test b/test index a1dab6b..4b0f6b7 100755 --- a/test +++ b/test @@ -12,9 +12,8 @@ function help { echo "" echo "commands:" echo " run baseline tests" - echo " all run all tests" - echo " install install deps for running baseline tests" - echo " install all install deps for running all tests" + echo " full run full tests (ie. not short)" + echo " install install deps for running tests" echo "" echo "options:" echo " --scripted dont jump console lines (still use colors)" @@ -97,7 +96,7 @@ while true; do install=1 shift 1 ;; - "all") + "full") fullTestFlags="" shift 1 ;;