2010-07-12 17:03:45 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
2013-11-13 11:40:27 -08:00
|
|
|
SRC_DIR=$(python -c "import os; print os.path.dirname(os.path.realpath('$0'))")
|
2012-11-26 09:58:09 -06:00
|
|
|
|
|
|
|
cd ${SRC_DIR}/test/functional
|
2012-03-12 21:54:31 +00:00
|
|
|
nosetests --exe $@
|
2014-01-07 14:18:31 +08:00
|
|
|
rvalue=$?
|
2012-03-12 21:54:31 +00:00
|
|
|
cd -
|
|
|
|
|
2014-01-07 14:18:31 +08:00
|
|
|
exit $rvalue
|