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'))")
|
|
|
|
|
|
|
|
cd ${SRC_DIR}/test/probe
|
2013-12-24 01:17:19 -08:00
|
|
|
nosetests --exe $@
|
2012-04-18 15:12:10 +03:00
|
|
|
rvalue=$?
|
2012-03-12 21:54:31 +00:00
|
|
|
cd -
|
2012-04-18 15:12:10 +03:00
|
|
|
|
|
|
|
exit $rvalue
|