diff --git a/.functests b/.functests index a7be2b3981..56898294eb 100755 --- a/.functests +++ b/.functests @@ -2,8 +2,12 @@ cd test/functional nosetests --exe $@ +func1=$? cd - cd test/functionalnosetests nosetests --exe $@ +func2=$? cd - + +exit $((func1 + func2)) diff --git a/.probetests b/.probetests index 38d8520a1d..67d25aae8d 100755 --- a/.probetests +++ b/.probetests @@ -2,4 +2,7 @@ cd test/probe nosetests --exe +rvalue=$? cd - + +exit $rvalue diff --git a/.unittests b/.unittests index 6f99aecdb8..773c2cb836 100755 --- a/.unittests +++ b/.unittests @@ -2,5 +2,7 @@ cd test/unit nosetests --exe --with-coverage --cover-package swift --cover-erase $@ +rvalue=$? rm -f .coverage cd - +exit $rvalue \ No newline at end of file