Merge "make test runner functions return the status of running the tests"
This commit is contained in:
3 changed files with 9 additions and 0 deletions
@@ -2,8 +2,12 @@
cd test/functional
nosetests --exe $@
func1=$?
cd -
cd test/functionalnosetests
nosetests --exe $@
func2=$?
cd -
exit $((func1 + func2))
@@ -2,4 +2,7 @@
cd test/probe
nosetests --exe
rvalue=$?
cd -
exit $rvalue
@@ -2,5 +2,7 @@
cd test/unit
nosetests --exe --with-coverage --cover-package swift --cover-erase $@
rvalue=$?
rm -f .coverage
cd -
exit $rvalue
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.