bernd.mielke%snafu.de 8e23bfe8f8 bug 107103 enable regression output for table printing tests
r=karnaze sr=attinasi


git-svn-id: svn://10.0.0.236/trunk@106558 18797224-902f-48f8-a5cc-f745e15eee43
2001-10-29 19:19:06 +00:00

25 lines
718 B
Batchfile
Executable File

REM Table regression tests.
REM
REM How to run:
REM 1. Before you make changes, run:
REM rtest baseline
REM 2. Make your changes and rebuild
REM 3. rtest verify >outfilename
REM
@echo off
if %1==baseline goto baseline
:verify
if not exist verify mkdir verify
s:\mozilla\dist\win32_d.obj\bin\viewer -Prt 1 -B 1 -o s:\mozilla\layout\html\tests\table\printing\verify\ -rd s:\mozilla\layout\html\tests\table\printing -f s:\mozilla\layout\html\tests\table\printing\file_list.txt
goto done
:baseline
s:\mozilla\dist\win32_d.obj\bin\viewer -Prt 1 -o s:\mozilla\layout\html\tests\table\printing\ -f s:\mozilla\layout\html\tests\table\printing\file_list.txt
goto done
:error
echo syntax: rtest (baseline verify)
:done