mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
33 lines
448 B
Batchfile
33 lines
448 B
Batchfile
|
@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 core
|
||
|
call rtest.bat %1
|
||
|
|
||
|
cd ..\viewer_tests
|
||
|
call rtest.bat %1
|
||
|
|
||
|
cd ..\bugs
|
||
|
call rtest.bat %1
|
||
|
|
||
|
cd ..\marvin
|
||
|
call rtest.bat %1
|
||
|
|
||
|
cd ..\other
|
||
|
call rtest.bat %1
|
||
|
|
||
|
cd ..\dom
|
||
|
call rtest.bat %1
|
||
|
|
||
|
cd ..\printing
|
||
|
call rtest.bat %1
|
||
|
|
||
|
cd ..
|
||
|
|
||
|
set XPCOM_DEBUG_BREAK=%XPCOM_DEBUG_BREAK_SAVE%
|