no source code changed, not part of build, so no reviewer git-svn-id: svn://10.0.0.236/trunk@83648 18797224-902f-48f8-a5cc-f745e15eee43
17 lines
501 B
Batchfile
Executable File
17 lines
501 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\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\win32_d.obj\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
|