start-testsuite.sh: Pass a third parameter to ttcn3_start

The name of the parameters is a little misleading, since the second
parameter could just be a testname.

Change-Id: Ibe207a83c477c918a865a8a34cad7ca5d45c7eac
This commit is contained in:
Daniel Willmann 2018-02-02 20:09:00 +01:00
parent 12984ef36d
commit 47fb0f4871
1 changed files with 5 additions and 1 deletions

View File

@ -15,4 +15,8 @@ if [ $# -gt 1 ]; then
CFG=$2
fi
LD_LIBRARY_PATH=`dirname $SUITE`:/usr/lib/titan:/usr/ttcn3/lib ttcn3_start $SUITE $CFG
if [ $# -gt 2 ]; then
TEST=$3
fi
LD_LIBRARY_PATH=`dirname $SUITE`:/usr/lib/titan:/usr/ttcn3/lib ttcn3_start $SUITE $CFG $TEST