aboutsummaryrefslogtreecommitdiff
path: root/tester.bat
blob: ad8f8f348ced8bdaf73ef842ef390a233493ea77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
@echo off
rem file      : tester.bat
rem license   : GNU GPL v2; see accompanying LICENSE file

rem
rem Run an ODB example. The example directory is the current directory.
rem
rem %1     database
rem %2     configuration, for example, Debug or Release
rem %3     platform, for example Win32 or x64
rem topdir variable containing the path to top project directory
rem

setlocal

if "_%3_" == "_Win32_" (
  set "dir=%2"
) else (
  set "dir=%3\%2"
)

rem Globbing returns files in alphabetic order.
rem
if exist *.sql (
  for %%f in (*.sql) do (
    call %topdir%\%1-driver.bat %%f
    if errorlevel 1 goto error
  )
)

%dir%\driver.exe --options-file %topdir%\%1.options
if errorlevel 1 goto error

goto end

:error
endlocal
exit /b 1

:end
endlocal