home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 15
/
CD_ASCQ_15_070894.iso
/
news
/
683
/
recio120
/
test.bat
< prev
next >
Wrap
DOS Batch File
|
1994-04-08
|
400b
|
19 lines
echo off
cls
echo regression test
echo.
rem run test data through program testch
testch <testch.dat >testch
rem compare results to baseline output
dif testch.out testch
if errorlevel 1 goto next
del testch
:next
rem run test data through program testco
testco <testco.dat >testco
rem compare results to baseline output
dif testco.out testco
if errorlevel 1 goto end
del testco
:end