https://github.com/Kitware/CMake
Revision fe280e0cda545e791b80cb5c6ca79ddf642fa08d authored by Marc Chevrier on 19 December 2019, 18:42:24 UTC, committed by Marc Chevrier on 19 December 2019, 18:42:24 UTC
Property IMPORTED_CONFIGURATIONS for targets Python*::Python
and Python*::Module is not correctly set.
1 parent 512ab50
Raw File
Tip revision: fe280e0cda545e791b80cb5c6ca79ddf642fa08d authored by Marc Chevrier on 19 December 2019, 18:42:24 UTC
FindPython*: Fix erroneous target properties setting
Tip revision: fe280e0
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