mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
17 lines
477 B
Batchfile
17 lines
477 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\base\verify\ -rd s:\mozilla\layout\html\tests\block\base -f s:\mozilla\layout\html\tests\block\base\file_list.txt
|
||
|
goto done
|
||
|
|
||
|
:baseline
|
||
|
s:\mozilla\dist\bin\viewer -o s:\mozilla\layout\html\tests\block\base\ -f s:\mozilla\layout\html\tests\block\base\file_list.txt
|
||
|
goto done
|
||
|
|
||
|
:error
|
||
|
echo syntax: rtest (baseline verify)
|
||
|
|
||
|
:done
|