aboutsummaryrefslogtreecommitdiffstats
path: root/start-testsuite.sh
blob: 87cf08bde0a72a02992c93d69adf4ae07d23b728 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

# Helper script to starte a TITAN-generated test suite, supporting
# dynamically linked suites to ensure JUNIT generation is possible.

if [ $# -lt 1 ]; then
	echo "You have to specify the test suite name"
	echo "Syntax example: $0 osmo-ttcn3-hacks/ggsn_tests/GGSN_Test ./GGSN_Test.cfg"
	exit 1
fi

SUITE=$1
CFG=`basename $SUITE`.cfg
if [ $# -gt 1 ]; then
	CFG=$2
fi

LD_LIBRARY_PATH=`dirname $SUITE`:/usr/lib/titan ttcn3_start $SUITE $CFG