blob: 4b868bb3857d48b97a4d1eda88ffea3c4b85a9b2 [file] [log] [blame] [edit]
@echo off
rem A batch file to run the XML test files written by Geographic Data BC.
set CLASSPATH=
for %%i in (..\lib\*.*) do (
set jarfile=%%i
rem If we append to a variable inside the for, only the last entry will
rem be kept. So append to the variable outside the for.
rem See http://www.experts-exchange.com/Operating_Systems/MSDOS/Q_20561701.html.
rem [Jon Aquino]
call :setclass
)
java com.vividsolutions.jtstest.testrunner.TopologyTestApp -Files ..\testxml\validate ..\testxml\general
pause
goto :eof
:setclass
set CLASSPATH=%jarfile%;%CLASSPATH%
set jarfile=
:eof