mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-09 15:20:56 -06:00
FindSquish: Fix launching the Squish server process on Windows
There are countless posts (e.g. stack overflow) that start /b takes a window title as first argument. Once I added a random string there the server was started and things started to work.
This commit is contained in:
@@ -12,7 +12,7 @@ echo "Adding AUT... %SQUISHSERVER% --config addAUT %AUT% %AUTDIR%"
|
||||
%SQUISHSERVER% --config addAUT "%AUT%" "%AUTDIR%"
|
||||
|
||||
echo "Starting the squish server... %SQUISHSERVER%"
|
||||
start /B %SQUISHSERVER%
|
||||
start /B "Squish Server" %SQUISHSERVER%
|
||||
|
||||
echo "Running the test case...%SQUISHRUNNER% --testsuite %TESTSUITE% --testcase %TESTCASE%"
|
||||
%SQUISHRUNNER% --testsuite "%TESTSUITE%" --testcase "%TESTCASE%"
|
||||
|
||||
Reference in New Issue
Block a user