blob: 409b46a3ed5d77dfc8464331c3ac0271517e3af9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
echo "Starting the squish server...$1 --daemon"
$1 --daemon
echo "Running the test case...$2 --testcase $3 --wrapper $4 --aut $5"
$2 --testcase $3 --wrapper $4 --aut $5
returnValue=$?
echo "Stopping the squish server...$1 --stop"
$1 --stop
exit $returnValue
|