artest: clarify that the tool in gtk2_ardour is testing libs/

Avoid confusingly general sounding
	-------------------------------------------
	Running tests for ardour...
	-------------------------------------------
This commit is contained in:
Mads Kiilerich 2022-06-11 14:47:28 +02:00 committed by Paul Davis
parent 9f69b8ccd9
commit 4b8aa51093
1 changed files with 4 additions and 4 deletions

View File

@ -15,14 +15,14 @@ run_tests () {
RUN=run-tests
if test -n "$2"; then
RUN=$2
echo "Running test $2 of $1..."
echo "Running test $2 of libs/$1..."
else
echo "Running tests for $1..."
echo "Running tests for libs/$1..."
fi
echo "-------------------------------------------"
echo ""
$3 $LIBS_DIR/$1/$RUN || ALLGOOD=no
echo ""
$3 $LIBS_DIR/$1/$RUN || ALLGOOD=no
echo ""
}
if [ $# -gt 0 ]; then