blob: ff7d167e6a7b2531674b60474e38caa5fbe34a70 [file] [log] [blame]
Zachary Waree74fe182015-09-03 23:43:37 -05001@echo off
2rem Used by the buildbot "test" step.
3setlocal
Zachary Ware6250df82015-06-09 23:16:52 -05004
Zachary Waree74fe182015-09-03 23:43:37 -05005set here=%~dp0
6set rt_opts=-q -d
7set regrtest_args=
Zachary Ware6250df82015-06-09 23:16:52 -05008
9:CheckOpts
Zachary Waree74fe182015-09-03 23:43:37 -050010if "%1"=="-x64" (set rt_opts=%rt_opts% %1) & shift & goto CheckOpts
11if "%1"=="-d" (set rt_opts=%rt_opts% %1) & shift & goto CheckOpts
12if "%1"=="-O" (set rt_opts=%rt_opts% %1) & shift & goto CheckOpts
13if "%1"=="-q" (set rt_opts=%rt_opts% %1) & shift & goto CheckOpts
14if "%1"=="+d" (set rt_opts=%rt_opts:-d=%) & shift & goto CheckOpts
15if "%1"=="+q" (set rt_opts=%rt_opts:-q=%) & shift & goto CheckOpts
16if NOT "%1"=="" (set regrtest_args=%regrtest_args% %1) & shift & goto CheckOpts
Zachary Ware6250df82015-06-09 23:16:52 -050017
Zachary Waree74fe182015-09-03 23:43:37 -050018echo on
Steve Dower3cc6da22015-10-08 09:06:17 -070019call "%here%..\..\PCbuild\rt.bat" %rt_opts% -uall -rwW --timeout=3600 %regrtest_args%