From: Arturo Borrero Gonzalez Date: Wed, 16 Nov 2016 12:51:52 +0000 (+0100) Subject: tests: shell: allow to execute a single testcase X-Git-Tag: v0.7~34 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a7d9df42a8d1b7189d1c7ae23bb513c4b518cf16;p=thirdparty%2Fnftables.git 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 --- 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 }