diff --git a/test/run b/test/run index 7abad9d53..759b47623 100755 --- a/test/run +++ b/test/run @@ -59,6 +59,13 @@ for i in `echo $tests`; do fi done +# +if [ $tests_no -eq 0 ] +then + echo "No test binaries found. did you compile?" + exit 1 +fi + if [ "$tests" = "$alltests" ] then # Print test welcome message clear @@ -105,4 +112,10 @@ then echo " " fi fi +# if any test failed return an error +if [ $failed -gt 0 ] +then + exit 1 +fi + # echo " "