summaryrefslogtreecommitdiff
path: root/.functests
blob: 56898294eb3909ba5619b387f36b79be75ba9e71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

cd test/functional
nosetests --exe $@
func1=$?
cd -

cd test/functionalnosetests
nosetests --exe $@
func2=$?
cd -

exit $((func1 + func2))