travis: always show test-results

even if one of the tests crashes
This commit is contained in:
Michael Davidsaver
2020-04-08 14:51:42 +02:00
committed by Ralph Lange
parent 94fdfbe802
commit 4199177f4b

View File

@@ -15,8 +15,13 @@ export EPICS_HOST_ARCH
make -j2 $EXTRA
ret=0
if [ "$TEST" != "NO" ]
then
make tapfiles
make tapfiles || ret=$?
make -s test-results
fi
exit $ret