aboutsummaryrefslogtreecommitdiff
path: root/qt/common/test.bat
diff options
context:
space:
mode:
authorConstantin Michael <constantin@codesynthesis.com>2011-04-18 12:56:18 +0200
committerConstantin Michael <constantin@codesynthesis.com>2011-04-22 18:52:23 +0200
commite08eeb9e5da87a729992c5a1d14bfd62f4ed2205 (patch)
treedf731d11c8770628acba94ec4593413d1ee95b5b /qt/common/test.bat
parentda9dd6be1b0203c496af4aff16df60fedc64463a (diff)
Add tests for qt/smart-ptr
Diffstat (limited to 'qt/common/test.bat')
-rw-r--r--qt/common/test.bat81
1 files changed, 81 insertions, 0 deletions
diff --git a/qt/common/test.bat b/qt/common/test.bat
new file mode 100644
index 0000000..bd6c5b5
--- /dev/null
+++ b/qt/common/test.bat
@@ -0,0 +1,81 @@
+@echo off
+rem file : qt/common/test.bat
+rem author : Constantin Michael <constantin@codesynthesis.com>
+rem copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
+rem license : GNU GPL v2; see accompanying LICENSE file
+
+setlocal
+
+set "tests=__path__(dirs)"
+set "confs=__path__(configurations)"
+set "plats=__path__(platforms)"
+set "curdir=%CD%"
+set "topdir=%curdir%\..\.."
+set "failed="
+
+if "_%1_" == "__" (
+ echo no database specified
+ goto usage
+)
+
+goto start
+
+rem
+rem %1 - test directory
+rem %2 - configuration
+rem %3 - platform
+rem %4 - database
+rem
+:run_test
+ cd %1
+
+ if "_%3_" == "_Win32_" (
+ set "dir=%2"
+ ) else (
+ set "dir=%3\%2"
+ )
+
+ if exist %dir%\driver.exe (
+ echo %1\%3\%2
+ call %topdir%\tester.bat %4 %2 %3
+ if errorlevel 1 (
+ set "failed=%failed% %1\%3\%2"
+ )
+ )
+
+ cd %curdir%
+goto :eof
+
+:start
+
+for %%t in (%tests%) do (
+ for %%c in (%confs%) do (
+ for %%p in (%plats%) do (
+ call :run_test %%t %%c %%p %1
+ )
+ )
+)
+
+if not "_%failed%_" == "__" goto error
+
+echo.
+echo ALL TESTS PASSED
+echo.
+goto end
+
+:usage
+echo.
+echo usage: test.bat database
+echo.
+
+:error
+if not "_%failed%_" == "__" (
+ echo.
+ for %%t in (%failed%) do echo FAILED: %%t
+ echo.
+)
+endlocal
+exit /b 1
+
+:end
+endlocal