make test runner functions return the status of running the tests

This makes it a lot easier for CI jobs to be setup and return the true
status of the testsuite.

Change-Id: I0c2b0d6b17f560a889cd2f22ab98a68361f6d738
This commit is contained in:
Ionuț Arțăriși 2012-04-18 15:12:10 +03:00
parent 40cbff9fd3
commit c51788a4ac
3 changed files with 9 additions and 0 deletions

View File

@ -2,8 +2,12 @@
cd test/functional
nosetests --exe $@
func1=$?
cd -
cd test/functionalnosetests
nosetests --exe $@
func2=$?
cd -
exit $((func1 + func2))

View File

@ -2,4 +2,7 @@
cd test/probe
nosetests --exe
rvalue=$?
cd -
exit $rvalue

View File

@ -2,5 +2,7 @@
cd test/unit
nosetests --exe --with-coverage --cover-package swift --cover-erase $@
rvalue=$?
rm -f .coverage
cd -
exit $rvalue