From: Evan Hunt Date: Tue, 23 Aug 2011 22:52:58 +0000 (+0000) Subject: Add back the "| cat" so that output files don't get truncated X-Git-Tag: v9.9.0a1^2~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7d6972ff249cffdef195eccd854059d7d450c7fb;p=thirdparty%2Fbind9.git Add back the "| cat" so that output files don't get truncated --- diff --git a/unit/unittest.sh.in b/unit/unittest.sh.in index 2b4f4b5b611..0f0ea81e223 100644 --- a/unit/unittest.sh.in +++ b/unit/unittest.sh.in @@ -6,7 +6,10 @@ export PATH if [ -n "@ATFBIN@" ] then atf-run > atf.out - status=$? - atf-report < atf.out - [ $status -eq 0 ] && rm -f atf.out + status=$? + + # | cat is there to force non-fancy output + atf-report < atf.out | cat + + [ $status -eq 0 ] && rm -f atf.out fi