0b57158007
Change-Id: I709afcec998795794a9ef13bbe7493ddd46c59b5
11 lines
164 B
Bash
Executable File
11 lines
164 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
|