summaryrefslogtreecommitdiffstats
path: root/Modules/Squish4RunTestCase.bat
diff options
context:
space:
mode:
authorAlex Neundorf <neundorf@kde.org>2012-11-04 20:06:20 (GMT)
committerAlex Neundorf <neundorf@kde.org>2012-11-05 18:20:13 (GMT)
commit3a0ffa6225ec4b6f95dc691a91dec7f7e04cb7ec (patch)
treea795a5a9ac82f018f0aa619d05e6b935c3d95204 /Modules/Squish4RunTestCase.bat
parent2ae9d03fa64b49d708e489db0275f6893dfc05b4 (diff)
downloadCMake-3a0ffa6225ec4b6f95dc691a91dec7f7e04cb7ec.zip
CMake-3a0ffa6225ec4b6f95dc691a91dec7f7e04cb7ec.tar.gz
CMake-3a0ffa6225ec4b6f95dc691a91dec7f7e04cb7ec.tar.bz2
Squish: add support for squish 4 (#9734)
This patch adds support for Squish 4.x. The changes are basically what is attached to http://public.kitware.com/Bug/view.php?id=9734. When adding a test for squish 4.x, use squish_v4_add_test(). Alex
Diffstat (limited to 'Modules/Squish4RunTestCase.bat')
-rwxr-xr-xModules/Squish4RunTestCase.bat24
1 files changed, 24 insertions, 0 deletions
diff --git a/Modules/Squish4RunTestCase.bat b/Modules/Squish4RunTestCase.bat
new file mode 100755
index 0000000..ad1cc8c
--- /dev/null
+++ b/Modules/Squish4RunTestCase.bat
@@ -0,0 +1,24 @@
+set SQUISHSERVER=%1
+set SQUISHRUNNER=%2
+set TESTSUITE=%3
+set TESTCASE=%4
+set AUT=%5
+set AUTDIR=%6
+set SETTINGSGROUP=%7
+
+%SQUISHSERVER% --stop
+
+echo "Adding AUT... %SQUISHSERVER% --config addAUT %AUT% %AUTDIR%"
+%SQUISHSERVER% --config addAUT "%AUT%" "%AUTDIR%"
+
+echo "Starting the squish server... %SQUISHSERVER%"
+start /B %SQUISHSERVER%
+
+echo "Running the test case...%SQUISHRUNNER% --testsuite %TESTSUITE% --testcase %TESTCASE%"
+%SQUISHRUNNER% --testsuite "%TESTSUITE%" --testcase "%TESTCASE%"
+set returnValue=%ERRORLEVEL%
+
+echo "Stopping the squish server... %SQUISHSERVER% --stop"
+%SQUISHSERVER% --stop
+
+exit /B %returnValue%