summaryrefslogtreecommitdiff
path: root/dist
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2014-07-16 07:54:39 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2014-07-16 07:54:39 +0200
commit6ec218e7ec4e1414db463d238e681ebac91fbe08 (patch)
tree96ba1b257a1478b9be5b6f6f10d7c99829e69aca /dist
parent12d5c5532a39ac3c54815743991bb82720d64d7f (diff)
Ignore output XML files when running tests
Diffstat (limited to 'dist')
-rw-r--r--dist/examples/tester.bat10
1 files changed, 6 insertions, 4 deletions
diff --git a/dist/examples/tester.bat b/dist/examples/tester.bat
index b7aa478..ae6f683 100644
--- a/dist/examples/tester.bat
+++ b/dist/examples/tester.bat
@@ -25,12 +25,14 @@ rem compressed XML files (.xml.gz).
rem
if exist *.xml* (
for %%f in (*.xml*) do (
-
- %dir%\driver.exe %%f
- if errorlevel 1 goto error
+ if NOT "%%f" == "out.xml" (
+ if NOT "%%f" == "out.xml.gz" (
+ %dir%\driver.exe %%f
+ if errorlevel 1 goto error
+ )
+ )
)
) else (
-
%dir%\driver.exe
if errorlevel 1 goto error
)