tests: Return a failure code when any tests fail

At present 'make check' succeeds even if some tests fail. Adjust this so
that we can use things like 'git bisect run make check' to find a failure.

Signed-off-by: Simon Glass <sjg@chromium.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
main
Simon Glass 2017-08-19 11:17:56 -06:00 committed by David Gibson
parent 155faf6cc2
commit b9eba92ea5
1 changed files with 1 additions and 0 deletions

View File

@ -900,3 +900,4 @@ fi
echo "* Strange test result: $tot_strange"
echo "**********"

[ "$tot_tests" -eq "$tot_pass" ] || exit 1