From: Michael Graff Date: Wed, 27 Jul 2011 16:31:07 +0000 (+0000) Subject: remove csv output so we get a more pretty, human readable output for now. Should... X-Git-Tag: v9.9.0a1~60 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=bef8fcc7b394556b6065db03a01a0e90ff31b9f2;p=thirdparty%2Fbind9.git remove csv output so we get a more pretty, human readable output for now. Should we want to change this later, we can change it back, but robie would need to somehow handle the atf output in the first place to make csv useful. Also, put our path first, otherwise it fails on NetBSD. --- diff --git a/unit/unittest.sh.in b/unit/unittest.sh.in index e0f70451e9f..8dd98971931 100644 --- a/unit/unittest.sh.in +++ b/unit/unittest.sh.in @@ -1,9 +1,10 @@ #!/bin/sh -PATH=${PATH}:@ATFBIN@ +PATH="@ATFBIN@:${PATH}" export PATH if [ -n "@ATFBIN@" ] then - atf-run | atf-report -o csv:- | cat + # | cat is there to force non-fancy output + atf-run | atf-report | cat fi