Merge "make test runner functions return the status of running the tests"
This commit is contained in:
commit
9fe0a1cc4b
@ -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
|
Loading…
x
Reference in New Issue
Block a user