Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 164df4e51a5bf0b3b1694b81edbe38ea4bf1ce13 authored by Larry Hastings on 25 July 2015, 21:22:13 UTC
Version bump for Python 3.5.0b4.
Tip revision: 164df4e
test.bat
@rem Used by the buildbot "test" step.
@setlocal

@set here=%~dp0
@set rt_opts=-q -d

:CheckOpts
@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

call "%here%..\..\PCbuild\rt.bat" %rt_opts% -uall -rwW -n --timeout=3600 %1 %2 %3 %4 %5 %6 %7 %8 %9
back to top