https://github.com/Kitware/CMake
Raw File
Tip revision: 844417294bd6a1f4bcd3ff49e92659bbd437752d authored by Brad King on 13 September 2024, 13:25:31 UTC
Merge topic 'file-REAL_PATH-warn-non-existing'
Tip revision: 8444172
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