diff options
author | Constantin Michael <constantin@codesynthesis.com> | 2011-11-24 09:58:48 +0200 |
---|---|---|
committer | Constantin Michael <constantin@codesynthesis.com> | 2011-11-24 10:23:47 +0200 |
commit | aefb392d4d6bcb59c3f3df34018d754ac4f718e9 (patch) | |
tree | 3d881a964e5ce72c50723ef04ee85034cece8b4a /boost/oracle/test.bat | |
parent | 7703243861e4ade2c0fcdda98033a19d006717b7 (diff) |
Add Oracle to automake and Visual Studio build
Diffstat (limited to 'boost/oracle/test.bat')
-rw-r--r-- | boost/oracle/test.bat | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/boost/oracle/test.bat b/boost/oracle/test.bat new file mode 100644 index 0000000..d323b10 --- /dev/null +++ b/boost/oracle/test.bat @@ -0,0 +1,70 @@ +@echo off +rem file : boost/oracle/test.bat +rem author : Boris Kolpackov <boris@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 oracle %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 |