From 8bede388af99cee1b0b32c108ca4704548c0b790 Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Mon, 24 Sep 2012 22:25:58 +0200 Subject: Test suite: remove indentation of messages --- src/testsuite/tests.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/testsuite/tests.sh') diff --git a/src/testsuite/tests.sh b/src/testsuite/tests.sh index dc184ffc..f820628f 100755 --- a/src/testsuite/tests.sh +++ b/src/testsuite/tests.sh @@ -18,7 +18,7 @@ test=`echo ${name} | cut -d '.' -f 1` [ -d logs ] || mkdir logs if [ ! -r "$test" ]; then - echo " ${name}: test \"$test\" not found!"; exit 77 + echo "${name}: test \"$test\" not found!"; exit 77 exit 1 fi @@ -27,14 +27,14 @@ fi type expect > /dev/null 2>&1 if [ $? -ne 0 ]; then - echo " ${name}: \"expect\" not found."; exit 77 + echo "${name}: \"expect\" not found."; exit 77 fi type telnet > /dev/null 2>&1 if [ $? -ne 0 ]; then - echo " ${name}: \"telnet\" not found."; exit 77 + echo "${name}: \"telnet\" not found."; exit 77 fi -echo_n " running ${test} ..." +echo_n "running ${test} ..." expect ${srcdir}/${test}.e > logs/${test}.log 2>&1; r=$? [ $r -eq 0 ] && echo " ok." || echo " failure!" -- cgit 1.4.1