This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "". The branch, devel has been updated via 2abd8c6fddd4cfc0bfbff49ea2e90d13e090db2b (commit) from 60e1809537b60888eada8e756cbf69ebb744faae (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 2abd8c6fddd4cfc0bfbff49ea2e90d13e090db2b Author: Dries Kimpe <[email protected]> Date: Thu Jul 18 19:11:55 2013 -0500 Error output to correct FD in testrunner ----------------------------------------------------------------------- Summary of changes: tests/testrunner.sh.in | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) Diff of changes: diff --git a/tests/testrunner.sh.in b/tests/testrunner.sh.in index 8e48249..30b1c64 100644 --- a/tests/testrunner.sh.in +++ b/tests/testrunner.sh.in @@ -66,9 +66,10 @@ for test in $*; do echo "${tap} ${testnumber} - ${test} ${directive}" >&3 cat ${TMPERR} | sed -e 's/^/ + /g' >&4 cat ${TMPOUT} | sed -e 's/^/ | /g' >&4 - cat ${TMPERR} | sed -e 's/^/ # + /g' - rm ${TMPOUT} ${TMPERR} echo -e " # ${status}\t [${testnumber}/${TESTCOUNT}] - $test" >&2 + cat ${TMPERR} | sed -e 's/^/ # + /g' >&2 + + rm ${TMPOUT} ${TMPERR} if test "${ret}" -eq 130; then echo "Ctrl-C received. Stopping tests" hooks/post-receive --