2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 05:28:00 +00:00

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.

This commit is contained in:
Michael Graff 2011-07-27 16:31:07 +00:00
parent 563d5a557e
commit bef8fcc7b3

View File

@ -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