From 879b279154fd3b7593c80a429b4c05fcd532175b Mon Sep 17 00:00:00 2001 From: Frederik Gladhorn Date: Mon, 20 Apr 2020 22:04:45 +0200 Subject: 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. --- Modules/Squish4RunTestCase.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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%" -- cgit v0.12