We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40cbff9 commit c51788aCopy full SHA for c51788a
.functests
@@ -2,8 +2,12 @@
2
3
cd test/functional
4
nosetests --exe $@
5
+func1=$?
6
cd -
7
8
cd test/functionalnosetests
9
10
+func2=$?
11
12
+
13
+exit $((func1 + func2))
.probetests
@@ -2,4 +2,7 @@
cd test/probe
nosetests --exe
+rvalue=$?
+exit $rvalue
.unittests
@@ -2,5 +2,7 @@
cd test/unit
nosetests --exe --with-coverage --cover-package swift --cover-erase $@
rm -f .coverage
0 commit comments