https://github.com/Kitware/CMake
Raw File
Tip revision: c462aafcfa2815b164c3fff660bd1fc78e95cb12 authored by David Cole on 09 August 2012, 17:57:02 UTC
CMake 2.8.9
Tip revision: c462aaf
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