https://github.com/Kitware/CMake
Revision 032961c6ac81d82270a7b1986935111aa5e32a56 authored by Brad King on 15 May 2014, 15:29:08 UTC, committed by Brad King on 15 May 2014, 15:29:08 UTC
2 parent s 1f1df31 + 5527cfa
Raw File
Tip revision: 032961c6ac81d82270a7b1986935111aa5e32a56 authored by Brad King on 15 May 2014, 15:29:08 UTC
Merge branch 'release'
Tip revision: 032961c
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