mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
17 lines
497 B
Batchfile
Executable File
17 lines
497 B
Batchfile
Executable File
@echo off
|
|
if %1==baseline goto baseline
|
|
|
|
:verify
|
|
if not exist verify mkdir verify
|
|
s:\mozilla\dist\win32_d.obj\bin\viewer -o s:\mozilla\layout\html\tests\table\bugs\verify\ -rd s:\mozilla\layout\html\tests\table\bugs -f s:\mozilla\layout\html\tests\table\bugs\file_list.txt
|
|
goto done
|
|
|
|
:baseline
|
|
s:\mozilla\dist\win32_d.obj\bin\viewer -o s:\mozilla\layout\html\tests\table\bugs\ -f s:\mozilla\layout\html\tests\table\bugs\file_list.txt
|
|
goto done
|
|
|
|
:error
|
|
echo syntax: rtest (baseline verify)
|
|
|
|
:done
|