Fail on scheduling errors

This commit is contained in:
Willem Toorop 2016-04-28 15:02:27 +02:00
parent 234d6d1b06
commit d09698496d
1 changed files with 10 additions and 2 deletions

View File

@ -4,5 +4,13 @@
# use .tpkg.var.test for in test variable passing
[ -f .tpkg.var.test ] && source .tpkg.var.test
cd "${BUILDDIR}/build-event-loops"
make test
(
cd "${BUILDDIR}/build-event-loops"
make test
) && if grep 'ERROR:' result.330-event-loops-unit-tests
then
exit 1
else
echo 'No ERROR:s found in result.330-event-loops-unit-tests'
ls -l result.330-event-loops-unit-tests
fi