swift/.probetests
Chmouel Boudjnah ad881413d0 Allow specify arguments to .probetests script
Just so at least I can add -x or -s.

Change-Id: I95543a3086ca5fb292e7899c02646a58296c610a
2013-12-24 01:18:19 -08:00

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