mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
b985f2182e
not affecting the build
22 lines
1009 B
Batchfile
Executable File
22 lines
1009 B
Batchfile
Executable File
@echo off
|
|
if "%1"=="baseline" goto baseline
|
|
|
|
:verify
|
|
if not exist verify mkdir verify
|
|
s:\mozilla\dist\bin\viewer -o s:\mozilla\layout\html\tests\block\printing\verify\ -rd s:\mozilla\layout\html\tests\block\printing -f s:\mozilla\layout\html\tests\block\printing\file_list.txt
|
|
REM some files require asynch loading, so they need a short delay to give good results
|
|
s:\mozilla\dist\bin\viewer -o s:\mozilla\layout\html\tests\block\printing\verify\ -rd s:\mozilla\layout\html\tests\block\printing -f s:\mozilla\layout\html\tests\block\printing\file_list_slow.txt
|
|
goto done
|
|
|
|
:baseline
|
|
s:\mozilla\dist\bin\viewer -o s:\mozilla\layout\html\tests\block\printing\ -f s:\mozilla\layout\html\tests\block\printing\file_list.txt
|
|
REM some files require asynch loading, so they need a short delay to give good results
|
|
s:\mozilla\dist\bin\viewer -o s:\mozilla\layout\html\tests\block\printing\ -f s:\mozilla\layout\html\tests\block\printing\file_list_slow.txt
|
|
goto done
|
|
|
|
:error
|
|
echo syntax: rtest (baseline verify)
|
|
|
|
:done
|
|
|