Hi Christoph!
Am 16.11.2012 um 21:58 schrieb Christoph Biedl ngircd.anoy@manchmal.in-ulm.de:
Alexander Barton wrote...
Please (please!) test this release candidate and report all problems, errors, and regressions you encounter!
The patch attached was required to build ngircd here. Should be pretty obvious ...
Christoph
diff --git a/src/testsuite/tests.sh b/src/testsuite/tests.sh index 8ecf8ab..8042c9c 100755 --- a/src/testsuite/tests.sh +++ b/src/testsuite/tests.sh @@ -42,6 +42,8 @@ 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" +else
- e_tmp="$e_in"
fi
echo_n "running ${test} …"
Hm, I think the "correct" fix is the one in commit 8061056c, no?
diff --git a/src/testsuite/tests.sh b/src/testsuite/tests.sh index 8ecf8ab..1989205 100755 --- a/src/testsuite/tests.sh +++ b/src/testsuite/tests.sh @@ -45,7 +45,7 @@ if test -t 1 2>/dev/null; then fi
echo_n "running ${test} ..." -expect "$e_tmp" > logs/${test}.log; r=$? +expect "$e_exec" > logs/${test}.log; r=$? [ $r -eq 0 ] && echo " ok." || echo " failure!"
rm -f "$e_tmp"
Alex