diff options
author | Constantin Michael <constantin@codesynthesis.com> | 2011-03-25 17:52:14 +0200 |
---|---|---|
committer | Constantin Michael <constantin@codesynthesis.com> | 2011-04-22 18:04:37 +0200 |
commit | 242363e630f2f541bcf1b7133f21ab2730587c4f (patch) | |
tree | 93a44a63f5b97d07c52ef3dbfea4fc19f98e0a90 /qt/mysql/test.bat | |
parent | 4b5fde5c42ed096f500a4005fbfba6b198739955 (diff) |
Update directory structure for Qt test
Diffstat (limited to 'qt/mysql/test.bat')
-rw-r--r-- | qt/mysql/test.bat | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/qt/mysql/test.bat b/qt/mysql/test.bat new file mode 100644 index 0000000..96f88be --- /dev/null +++ b/qt/mysql/test.bat @@ -0,0 +1,70 @@ +@echo off +rem file : qt/mysql/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 mysql %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 |