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

report R:PASS/FAIL

This commit is contained in:
Mark Andrews 2011-09-04 12:12:15 +00:00
parent 0d9d523ee5
commit df864361fd

View File

@ -3,13 +3,22 @@
PATH="@ATFBIN@:${PATH}"
export PATH
status=0
if [ -n "@ATFBIN@" ]
then
echo "I: unit tests"
atf-run > atf.out
status=$?
# | cat is there to force non-fancy output
atf-report < atf.out | cat
[ $status -eq 0 ] && rm -f atf.out
if [ $status -eq 0 ]
then
rm -f atf.out
echo R:PASS
else
echo R:FAIL
fi
fi
exit $status