From: Alexander Barton Date: Mon, 24 Sep 2012 21:05:24 +0000 (+0200) Subject: Test suite: make expect scripts more verbose X-Git-Tag: rel-20-rc1~45 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=de2fa78d92447d2acc3d349b8044524f5b616f59;p=ngircd Test suite: make expect scripts more verbose Now tests.sh transforms each expect script it executes using sed(1) and inserts a 'puts -nonewline stderr "."' in front of each "expect" command. --- diff --git a/src/testsuite/tests.sh b/src/testsuite/tests.sh index f820628f..8ecf8abf 100755 --- a/src/testsuite/tests.sh +++ b/src/testsuite/tests.sh @@ -34,10 +34,21 @@ if [ $? -ne 0 ]; then echo "${name}: \"telnet\" not found."; exit 77 fi +# prepare expect script +e_in="${srcdir}/${test}.e" +e_tmp="${test}.e_" +e_exec="$e_in" +if test -t 1 2>/dev/null; then + sed -e 's|^expect |puts -nonewline stderr "."; expect |g' \ + "$e_in" >"$e_tmp" + [ $? -eq 0 ] && e_exec="$e_tmp" +fi + echo_n "running ${test} ..." -expect ${srcdir}/${test}.e > logs/${test}.log 2>&1; r=$? +expect "$e_tmp" > logs/${test}.log; r=$? [ $r -eq 0 ] && echo " ok." || echo " failure!" +rm -f "$e_tmp" exit $r # -eof-