capture more information from unit tests

- preserve kyua results database when using kyua
This commit is contained in:
Evan Hunt
2018-03-08 16:53:16 -08:00
parent c54e379267
commit 81c23fecda

View File

@@ -10,7 +10,7 @@ if [ -n "@UNITTESTS@" -a -x "$ATFRUN" -a -f Atffile ]
then
echo "S:unit:`date`"
echo "T:unit:1:A"
echo "I: unit tests"
echo "I: unit tests (using atf-run)"
atf-run > atf.out
status=$?
@@ -29,11 +29,11 @@ elif [ -n "@UNITTESTS@" -a -x "$KYUA" -a -f Kyuafile ]
then
echo "S:unit:`date`"
echo "T:unit:1:A"
echo "I: unit tests"
kyua --logfile kyua.log test
echo "I: unit tests (using kyua)"
kyua --logfile kyua.log --loglevel debug test --results-file ${KYUA_RESULT:-NEW}
status=$?
kyua report
kyua report --results-file ${KYUA_RESULT:-LATEST}
if [ $status -eq 0 ]
then