qt-build-tools/6.5.1/_tools/cmake/share/cmake-3.27/Modules/SquishRunTestCase.sh
2023-11-01 01:44:24 +01:00

14 lines
272 B
Bash

#!/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