Imported Upstream version 2.8.10.2
[platform/upstream/cmake.git] / Modules / SquishRunTestCase.sh
1 #!/bin/sh
2
3 echo "Starting the squish server...$1 --daemon"
4 $1 --daemon
5
6 echo "Running the test case...$2 --testcase $3 --wrapper $4 --aut $5"
7 $2 --testcase $3 --wrapper $4 --aut $5
8 returnValue=$?
9
10 echo "Stopping the squish server...$1 --stop"
11 $1 --stop
12
13 exit $returnValue