Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 1043f95b9b0353bbeda7b7d5713643b8d4e4bcfa authored by Larry Hastings on 09 September 2015, 06:58:10 UTC
Version bump for Python 3.5.0rc4.
Tip revision: 1043f95
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