Files
Mozilla/mozilla/layout/html/tests/printer/general/rtest.bat
(no author) d368a405db This commit was manufactured by cvs2svn to create branch
'MOZILLA_1_8_0_BRANCH'.

git-svn-id: svn://10.0.0.236/branches/MOZILLA_1_8_0_BRANCH@185757 18797224-902f-48f8-a5cc-f745e15eee43
2005-12-07 05:54:01 +00:00

27 lines
824 B
Batchfile
Executable File

@echo off
if %1==baseline goto baseline
if %1==verify goto verify
if %1==printall goto printall
goto done
:printall
if not exist verify mkdir verify
echo "PRINTING TESTS"
s:\mozilla\dist\bin\viewer -Prt 2 -o s:\mozilla\layout\html\tests\printer\general\verify\ -f s:\mozilla\layout\html\tests\printer\general\file_list.txt -d 5
goto done
:verify
if not exist verify mkdir verify
s:\mozilla\dist\bin\viewer -Prt 1 -o s:\mozilla\layout\html\tests\printer\general\verify\ -rd s:\mozilla\layout\html\tests\printer\general -f s:\mozilla\layout\html\tests\printer\general\file_list.txt -d 5
goto done
:baseline
s:\mozilla\dist\bin\viewer -Prt 1 -o s:\mozilla\layout\html\tests\printer\general\ -f s:\mozilla\layout\html\tests\printer\general\file_list.txt -d 5
goto done
:error
echo syntax: rtest (baseline verify)
:done