From 3b26bca69a5aaaf6aebba22010f0342a23232dfe Mon Sep 17 00:00:00 2001 From: Dirk Zimoch Date: Mon, 18 Jun 2018 17:52:19 +0200 Subject: [PATCH] do not depend on . in PATH for tests --- streamApp/tests/testall | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/streamApp/tests/testall b/streamApp/tests/testall index 673d4f2..a9a4252 100755 --- a/streamApp/tests/testall +++ b/streamApp/tests/testall @@ -4,9 +4,9 @@ do if [ $i != testall -a -x $i ] then echo $i "$@" - if ! $i "$@" + if ! ./$i "$@" then - echo -e "\033[31;7mFailed.\033[0m" + echo -e "\033[31;7m$i failed.\033[0m" (( fail+=1 )) fi fi