2015-09-03 23:43:37 -05:00
|
|
|
@echo off
|
|
|
|
|
rem Used by the buildbot "test" step.
|
|
|
|
|
setlocal
|
2015-06-09 23:16:52 -05:00
|
|
|
|
2015-09-03 23:43:37 -05:00
|
|
|
set here=%~dp0
|
2016-09-10 08:55:15 -05:00
|
|
|
set rt_opts=-q -d
|
2016-05-20 13:15:55 +02:00
|
|
|
set regrtest_args=-j1
|
2015-06-09 23:16:52 -05:00
|
|
|
|
|
|
|
|
:CheckOpts
|
2015-09-03 23:43:37 -05:00
|
|
|
if "%1"=="-x64" (set rt_opts=%rt_opts% %1) & shift & goto CheckOpts
|
|
|
|
|
if "%1"=="-d" (set rt_opts=%rt_opts% %1) & shift & goto CheckOpts
|
|
|
|
|
if "%1"=="-O" (set rt_opts=%rt_opts% %1) & shift & goto CheckOpts
|
|
|
|
|
if "%1"=="-q" (set rt_opts=%rt_opts% %1) & shift & goto CheckOpts
|
|
|
|
|
if "%1"=="+d" (set rt_opts=%rt_opts:-d=%) & shift & goto CheckOpts
|
|
|
|
|
if "%1"=="+q" (set rt_opts=%rt_opts:-q=%) & shift & goto CheckOpts
|
|
|
|
|
if NOT "%1"=="" (set regrtest_args=%regrtest_args% %1) & shift & goto CheckOpts
|
2015-06-09 23:16:52 -05:00
|
|
|
|
2015-09-03 23:43:37 -05:00
|
|
|
echo on
|
2016-09-12 13:04:17 +02:00
|
|
|
call "%here%..\..\PCbuild\rt.bat" %rt_opts% -uall -rwW --slowest --timeout=1200 %regrtest_args%
|