https://github.com/Kitware/CMake
Revision 56653b81b85c7484a37b6574a1f4b628f462c717 authored by Kitware Robot on 23 December 2015, 05:01:05 UTC, committed by Kitware Robot on 23 December 2015, 05:01:05 UTC
1 parent 8a45573
Raw File
Tip revision: 56653b81b85c7484a37b6574a1f4b628f462c717 authored by Kitware Robot on 23 December 2015, 05:01:05 UTC
CMake Nightly Date Stamp
Tip revision: 56653b8
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