mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-09 09:20:15 +01:00
18 lines
473 B
Batchfile
18 lines
473 B
Batchfile
|
@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\net\verify\ -rd s:\mozilla\layout\html\tests\block\net -f s:\mozilla\layout\html\tests\block\net\file_list.txt
|
||
|
goto done
|
||
|
|
||
|
:baseline
|
||
|
s:\mozilla\dist\bin\viewer -o s:\mozilla\layout\html\tests\block\net\ -f s:\mozilla\layout\html\tests\block\net\file_list.txt
|
||
|
goto done
|
||
|
|
||
|
:error
|
||
|
echo syntax: rtest (baseline verify)
|
||
|
|
||
|
:done
|
||
|
|