From bef8fcc7b394556b6065db03a01a0e90ff31b9f2 Mon Sep 17 00:00:00 2001 From: Michael Graff Date: Wed, 27 Jul 2011 16:31:07 +0000 Subject: [PATCH] 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. --- unit/unittest.sh.in | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/unit/unittest.sh.in b/unit/unittest.sh.in index e0f70451e9..8dd9897193 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