From 377824e56588db1136d9a991ba77ae902556991e Mon Sep 17 00:00:00 2001 Message-Id: <377824e56588db1136d9a991ba77ae902556991e.1714879142.git.mdw@distorted.org.uk> From: Mark Wooding Date: Fri, 19 Feb 2016 21:49:33 +0000 Subject: [PATCH] server/tests.at (WITH_TRIPEX): Strip early tracing from the stderr file. Organization: Straylight/Edgeware From: Mark Wooding So we end up with a `...full' version. --- server/tests.at | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/server/tests.at b/server/tests.at index af94847d..ce2e6f2e 100644 --- a/server/tests.at +++ b/server/tests.at @@ -109,12 +109,13 @@ $3 ) && :; } | { cd $1 echo TRIPE $2 >&2 - WITH_STRACE([tripe], [TRIPE $2 >server-output.full 2>server-errors]) + WITH_STRACE([tripe], [TRIPE $2 >server-output.full 2>server-errors.full]) stat=$? echo $stat >server-status if test $stat -ne 0; then - echo "exit status: $stat" >>server-errors + echo "exit status: $stat" >>server-errors.full fi + grep -v '^+ tripe: ' server-errors.full >server-errors ## We interrupt this relatively sensible macro for an especially awful ## hack. The tripe server emits warnings which are often caused by lack of -- [mdw]