tests: Add usage() to run-all.sh
authorIlan Peer <ilan.peer@intel.com>
Mon, 27 Oct 2014 14:00:55 +0000 (10:00 -0400)
committerJouni Malinen <j@w1.fi>
Sat, 1 Nov 2014 15:08:29 +0000 (17:08 +0200)
The -h or --help command line arguments can now be used to request usage
information for run-all.sh.

Signed-off-by: Ilan Peer <ilan.peer@intel.com>
tests/hwsim/run-all.sh

index 20e8e34..9bdb7b1 100755 (executable)
@@ -24,6 +24,14 @@ else
     fi
 fi
 
+usage()
+{
+       echo "$0 [-v | --valgrind | valgrind] [-t | --trace | trace]"
+       echo "\t[-n <num> | --channels <num>] [-B | --build]"
+       echo "\t[-c | --codecov ] [run-tests.py parameters]"
+       exit 1
+}
+
 unset VALGRIND
 unset TRACE
 unset TRACE_ARGS
@@ -60,6 +68,9 @@ while [ "$1" != "" ]; do
                        CODECOV=lcov
                        BUILD_ARGS=-c
                        ;;
+               -h | --help)
+                       usage
+                       ;;
                *)
                        RUN_TEST_ARGS="$RUN_TEST_ARGS$1 "
                        shift