aboutsummaryrefslogtreecommitdiff
path: root/qt/sqlite/test.bat
diff options
context:
space:
mode:
authorConstantin Michael <constantin@codesynthesis.com>2011-04-11 18:22:24 +0200
committerConstantin Michael <constantin@codesynthesis.com>2011-04-22 18:52:23 +0200
commit3150aa68bf21483bbeb947030992fe8909efbc77 (patch)
tree98828b4ff91c6938e06bdb42a12d331fc0b4f701 /qt/sqlite/test.bat
parent26f3245189b3f5d4a96587953ac1d33f45465f1d (diff)
Add qt/basic and qt/date-time SQLite tests
Diffstat (limited to 'qt/sqlite/test.bat')
-rw-r--r--qt/sqlite/test.bat70
1 files changed, 70 insertions, 0 deletions
diff --git a/qt/sqlite/test.bat b/qt/sqlite/test.bat
new file mode 100644
index 0000000..997a329
--- /dev/null
+++ b/qt/sqlite/test.bat
@@ -0,0 +1,70 @@
+@echo off
+rem file : qt/sqlite/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="
+
+goto start
+
+rem
+rem %1 - test directory
+rem %2 - configuration
+rem %3 - platform
+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 sqlite %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
+ )
+ )
+)
+
+if not "_%failed%_" == "__" goto error
+
+echo.
+echo ALL TESTS PASSED
+echo.
+goto end
+
+:error
+if not "_%failed%_" == "__" (
+ echo.
+ for %%t in (%failed%) do echo FAILED: %%t
+ echo.
+)
+endlocal
+exit /b 1
+
+:end
+endlocal