blob: b1d755b0eebe2a674bb0f83ee70d9d3818d4c250 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
@echo off
rem file : tester.bat
rem copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
rem license : MIT; see accompanying LICENSE file
rem
rem Run test or example. The test/example directory is the current directory.
rem
rem %1 "test" or "example"
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
set "PATH=%topdir%\bin64;%topdir%\bin;%PATH%"
if "_%DIFF%_" == "__" set DIFF=fc
if "_%3_" == "_Win32_" (
set "dir=%2"
) else (
set "dir=%3\%2"
)
rem Globbing returns files in alphabetic order.
rem
if exist *.xml (
for %%f in (*.xml) do (
if "_%1_" == "_example_" (
%dir%\driver.exe %%f
) else (
%dir%\driver.exe %%f >test.out
)
if errorlevel 1 (
del /f test.out
goto error
)
if "_%1_" == "_test_" (
%DIFF% %%f test.out
if errorlevel 1 (
del /f test.out
goto error
)
del /f test.out
)
)
) else (
%dir%\driver.exe
if errorlevel 1 goto error
)
goto end
:error
endlocal
exit /b 1
:end
endlocal
|