summaryrefslogtreecommitdiff
path: root/.functests
diff options
context:
space:
mode:
Diffstat (limited to '.functests')
-rwxr-xr-x.functests4
1 files changed, 4 insertions, 0 deletions
diff --git a/.functests b/.functests
index a7be2b398..56898294e 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))