SquishRunTestCase.sh 272 B

12345678910111213
  1. #!/bin/sh
  2. echo "Starting the squish server...$1 --daemon"
  3. $1 --daemon
  4. echo "Running the test case...$2 --testcase $3 --wrapper $4 --aut $5"
  5. $2 --testcase $3 --wrapper $4 --aut $5
  6. returnValue=$?
  7. echo "Stopping the squish server...$1 --stop"
  8. $1 --stop
  9. exit $returnValue