run script:return 1 upon test failure.
Change-Id: If3c9d636a04da7f7b4098b58d29c492c664dab1a
This commit is contained in:
parent
32a4e0d84d
commit
fcb66ed1b5
1 changed files with 13 additions and 0 deletions
13
test/run
13
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 " "
|
||||
|
|
Loading…
Reference in a new issue