Merge topic 'cpack-innosetup-linux'
[kiteware-cmake.git] / Modules / SquishRunTestCase.sh
blob409b46a3ed5d77dfc8464331c3ac0271517e3af9
1 #!/bin/sh
3 echo "Starting the squish server...$1 --daemon"
4 $1 --daemon
6 echo "Running the test case...$2 --testcase $3 --wrapper $4 --aut $5"
7 $2 --testcase $3 --wrapper $4 --aut $5
8 returnValue=$?
10 echo "Stopping the squish server...$1 --stop"
11 $1 --stop
13 exit $returnValue