]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Add back the "| cat" so that output files don't get truncated
authorEvan Hunt <each@isc.org>
Tue, 23 Aug 2011 22:52:58 +0000 (22:52 +0000)
committerEvan Hunt <each@isc.org>
Tue, 23 Aug 2011 22:52:58 +0000 (22:52 +0000)
unit/unittest.sh.in

index 2b4f4b5b611cb7d4ce28c67c1e63bfabccf1b0e4..0f0ea81e223062ac0f8a9694c4123886ad9b3f49 100644 (file)
@@ -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