2010-07-12 17:03:45 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
2012-11-26 09:58:09 -06:00
|
|
|
SRC_DIR=$(dirname $0)
|
|
|
|
|
|
|
|
cd ${SRC_DIR}/test/functional
|
2012-03-12 21:54:31 +00:00
|
|
|
nosetests --exe $@
|
2012-04-18 15:12:10 +03:00
|
|
|
func1=$?
|
2012-03-12 21:54:31 +00:00
|
|
|
cd -
|
|
|
|
|
2012-11-26 09:58:09 -06:00
|
|
|
cd ${SRC_DIR}/test/functionalnosetests
|
2012-03-12 21:54:31 +00:00
|
|
|
nosetests --exe $@
|
2012-04-18 15:12:10 +03:00
|
|
|
func2=$?
|
2012-03-12 21:54:31 +00:00
|
|
|
cd -
|
2012-04-18 15:12:10 +03:00
|
|
|
|
|
|
|
exit $((func1 + func2))
|