gecko-dev/layout/html/tests/printer/images/rtest.bat
alexsavulov%netscape.com b985f2182e regression test files update to match the gmake directory tree
not affecting the build
2002-08-25 06:44:45 +00:00

27 lines
817 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\images\verify\ -f s:\mozilla\layout\html\tests\printer\images\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\images\verify\ -rd s:\mozilla\layout\html\tests\printer\images -f s:\mozilla\layout\html\tests\printer\images\file_list.txt -d 5
goto done
:baseline
s:\mozilla\dist\bin\viewer -Prt 1 -o s:\mozilla\layout\html\tests\printer\images\ -f s:\mozilla\layout\html\tests\printer\images\file_list.txt -d 5
goto done
:error
echo syntax: rtest (baseline verify)
:done