From 7d6972ff249cffdef195eccd854059d7d450c7fb Mon Sep 17 00:00:00 2001 From: Evan Hunt Date: Tue, 23 Aug 2011 22:52:58 +0000 Subject: [PATCH] Add back the "| cat" so that output files don't get truncated --- unit/unittest.sh.in | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/unit/unittest.sh.in b/unit/unittest.sh.in index 2b4f4b5b61..0f0ea81e22 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