From a7d9df42a8d1b7189d1c7ae23bb513c4b518cf16 Mon Sep 17 00:00:00 2001 From: Arturo Borrero Gonzalez Date: Wed, 16 Nov 2016 13:51:52 +0100 Subject: tests: shell: allow to execute a single testcase Using, for example: % sudo ./run-tests.sh testcase/mytest_0 Will result in an execution of this single testcase rather than the complete suite. This is useful while working with a concrete testcase. Signed-off-by: Arturo Borrero Gonzalez Signed-off-by: Pablo Neira Ayuso --- tests/shell/run-tests.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'tests/shell') diff --git a/tests/shell/run-tests.sh b/tests/shell/run-tests.sh index d9c44c80..4e41893e 100755 --- a/tests/shell/run-tests.sh +++ b/tests/shell/run-tests.sh @@ -43,6 +43,13 @@ if [ ! -x "$MODPROBE" ] ; then msg_error "no modprobe binary found" fi +if [ -x "$1" ] ; then + if grep ^.*${RETURNCODE_SEPARATOR}[0-9]\\+$ <<< $1 >/dev/null ; then + SINGLE=$1 + VERBOSE=y + fi +fi + if [ "$1" == "-v" ] ; then VERBOSE=y fi @@ -65,6 +72,10 @@ kernel_cleanup() { } find_tests() { + if [ ! -z "$SINGLE" ] ; then + echo $SINGLE + return + fi ${FIND} ${TESTDIR} -executable -regex \ .*${RETURNCODE_SEPARATOR}[0-9]+ | sort } -- cgit v1.2.3