Revision dcae93ee072292ef164d2361c7f3c860f167b46a authored by Brad King on 06 May 2014, 14:02:08 UTC, committed by Brad King on 06 May 2014, 14:02:08 UTC
2 parent s c553d68 + c0a6646
Raw File
SquishRunTestCase.sh
#!/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
back to top