yate/libs/ysig/run-ss7test
paulc 8c0c29f738 Fixed path to test executable.
git-svn-id: http://yate.null.ro/svn/yate/trunk@2683 acf43c95-373e-0410-b603-e72c3f656dc1
2009-06-04 14:01:44 +00:00

11 lines
270 B
Bash
Executable file

#!/bin/sh
# Script to run the SS7 test from the build directory
exefile="yate-ss7test"
if [ -x "$exefile" -a -x ../../run ]; then
cd ../..; exec ./run --executable "libs/ysig/$exefile" "$@"
else
echo "Could not find '$exefile' executable or run script" >&2
fi