ad881413d0
Just so at least I can add -x or -s. Change-Id: I95543a3086ca5fb292e7899c02646a58296c610a
11 lines
167 B
Bash
Executable File
11 lines
167 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SRC_DIR=$(python -c "import os; print os.path.dirname(os.path.realpath('$0'))")
|
|
|
|
cd ${SRC_DIR}/test/probe
|
|
nosetests --exe $@
|
|
rvalue=$?
|
|
cd -
|
|
|
|
exit $rvalue
|