summaryrefslogtreecommitdiffstats
path: root/Modules/Squish4RunTestCase.bat
diff options
context:
space:
mode:
authorFrederik Gladhorn <frederik.gladhorn@remarkable.com>2020-04-20 20:04:45 (GMT)
committerFrederik Gladhorn <frederik.gladhorn@remarkable.com>2020-04-20 20:20:11 (GMT)
commit879b279154fd3b7593c80a429b4c05fcd532175b (patch)
tree27fd18cf831c7f56b3a7f8c69fb8e215cdab81d5 /Modules/Squish4RunTestCase.bat
parent0bc4fa2be22a7973b8968a392f28fff59aa115e3 (diff)
downloadCMake-879b279154fd3b7593c80a429b4c05fcd532175b.zip
CMake-879b279154fd3b7593c80a429b4c05fcd532175b.tar.gz
CMake-879b279154fd3b7593c80a429b4c05fcd532175b.tar.bz2
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.
Diffstat (limited to 'Modules/Squish4RunTestCase.bat')
-rwxr-xr-xModules/Squish4RunTestCase.bat2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/Squish4RunTestCase.bat b/Modules/Squish4RunTestCase.bat
index ad1cc8c..5bd815a 100755
--- a/Modules/Squish4RunTestCase.bat
+++ b/Modules/Squish4RunTestCase.bat
@@ -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%"