mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
b985f2182e
not affecting the build
18 lines
443 B
Batchfile
Executable File
18 lines
443 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\xbl\verify\ -rd s:\mozilla\layout\html\tests\xbl -f s:\mozilla\layout\html\tests\xbl\file_list.txt
|
|
goto done
|
|
|
|
:baseline
|
|
s:\mozilla\dist\bin\viewer -o s:\mozilla\layout\html\tests\xbl\ -f s:\mozilla\layout\html\tests\xbl\file_list.txt
|
|
goto done
|
|
|
|
:error
|
|
echo syntax: rtest (baseline verify)
|
|
|
|
:done
|
|
|