From 688eb2883fe3f5d29f8a668eba18fec6235b1a15 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Tue, 11 Oct 2016 00:03:18 +0200 Subject: allow to run single tests from ./artest --- gtk2_ardour/artest | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) (limited to 'gtk2_ardour/artest') diff --git a/gtk2_ardour/artest b/gtk2_ardour/artest index 24d07785bc..e7603b89bf 100755 --- a/gtk2_ardour/artest +++ b/gtk2_ardour/artest @@ -10,17 +10,23 @@ LIBS_DIR=$TOP/build/libs ALLGOOD=yes run_tests () { - echo "" - echo "-------------------------------------------" - echo "Running tests for $1..." - echo "-------------------------------------------" - echo "" - $2 $LIBS_DIR/$1/run-tests || ALLGOOD=no + echo "" + echo "-------------------------------------------" + RUN=run-tests + if test -n "$2"; then + RUN=$2 + echo "Running test $2 of $1..." + else + echo "Running tests for $1..." + fi + echo "-------------------------------------------" + echo "" + $3 $LIBS_DIR/$1/$RUN || ALLGOOD=no echo "" } if [ $# -gt 0 ]; then - run_tests $1 $2 + run_tests $1 $2 $3 exit fi -- cgit v1.2.3