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
|
@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.JTSTestRunnerCmd -Files ..\testxml\validate ..\testxml\general
pause
goto :eof
:setclass
set CLASSPATH=%jarfile%;%CLASSPATH%
set jarfile=
:eof
|