mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-15 22:09:31 -04: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:
parent
563d5a557e
commit
bef8fcc7b3
1 changed files with 3 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue