mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
18 lines
284 B
Batchfile
Executable File
18 lines
284 B
Batchfile
Executable File
@echo off
|
|
|
|
rem Treat assertions as warnings so the tests don't choke waiting on a
|
|
rem dialog box
|
|
|
|
set XPCOM_DEBUG_BREAK_SAVE=%XPCOM_DEBUG_BREAK%
|
|
set XPCOM_DEBUG_BREAK=warn
|
|
|
|
cd base
|
|
call rtest.bat %1
|
|
|
|
cd ..\bugs
|
|
call rtest.bat %1
|
|
|
|
cd ..
|
|
|
|
set XPCOM_DEBUG_BREAK=%XPCOM_DEBUG_BREAK_SAVE%
|