From: Arturo Borrero Gonzalez <arturo@xxxxxxxxxx> 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 <arturo@xxxxxxxxxx> --- tests/shell/run-tests.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/tests/shell/run-tests.sh b/tests/shell/run-tests.sh index d9c44c8..4e41893 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 } -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html