aboutsummaryrefslogtreecommitdiff
path: root/common/test.bat
diff options
context:
space:
mode:
Diffstat (limited to 'common/test.bat')
-rw-r--r--common/test.bat46
1 files changed, 39 insertions, 7 deletions
diff --git a/common/test.bat b/common/test.bat
index 678e678..74e935d 100644
--- a/common/test.bat
+++ b/common/test.bat
@@ -8,18 +8,37 @@ setlocal
set "tests=__path__(dirs) __path__(thread_dirs)"
set "confs=__path__(configurations)"
+set "plats=__path__(platforms)"
set "topdir=__path__(topdir)\.."
+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 exist %2\driver.exe (
- echo %1\%2
- call %topdir%\tester.bat tracer %2
+ 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\%2"
+ set "failed=%failed% %1\%3\%2"
)
)
@@ -30,19 +49,32 @@ goto :eof
for %%t in (%tests%) do (
for %%c in (%confs%) do (
- call :run_test %%t %%c
+ 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
-for %%t in (%failed%) do echo FAILED: %%t
+if not "_%failed%_" == "__" (
+ echo.
+ for %%t in (%failed%) do echo FAILED: %%t
+ echo.
+)
+endlocal
exit /b 1
-goto end
:end
endlocal