aboutsummaryrefslogtreecommitdiff
path: root/test.bat
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-09-10 11:35:20 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-09-10 11:35:20 +0200
commited24158b4d247dff58162c97f04cbc4011579600 (patch)
tree6e9ba4ab126f64af1d710cda804782e158d1c7a0 /test.bat
parentf8eea05c337019bdc669d786e50d015f0cca14a2 (diff)
Add automated build and test scripts for Windows
Diffstat (limited to 'test.bat')
-rw-r--r--test.bat55
1 files changed, 37 insertions, 18 deletions
diff --git a/test.bat b/test.bat
index 9c72b2d..9d601cc 100644
--- a/test.bat
+++ b/test.bat
@@ -4,45 +4,64 @@ rem author : Boris Kolpackov <boris@codesynthesis.com>
rem copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC
rem license : GNU GPL v2; see accompanying LICENSE file
+rem
+rem test.bat database
+rem
+rem Run tests built with VC++.
+rem
+
setlocal
-set "tests=__path__(dirs)"
-set "confs=__path__(configurations)"
-set "topdir=__path__(topdir)\.."
+set "failed="
+
+if "_%1_" == "__" (
+ echo no database specified
+ goto usage
+)
+
goto start
+rem
+rem %1 - directory
+rem %2 - database
+rem
:run_test
+ echo.
+ echo testing %1
+ echo.
cd %1
-
- if exist %2\driver.exe (
- echo %1\%2
- call %topdir%\tester.bat tracer %2
- if errorlevel 1 (
- set "failed=%failed% %1\%2"
- )
- )
-
+ call test.bat %2
+ if errorlevel 1 set "failed=%failed% %1"
cd ..
goto :eof
:start
-for %%t in (%tests%) do (
- for %%c in (%confs%) do (
- call :run_test %%t %%c
- )
+for %%d in (tracer common %1) do (
+ call :run_test %%d %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