summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorPaul Monson <paulmon@users.noreply.github.com>2019-06-07 17:58:41 (GMT)
committerSteve Dower <steve.dower@python.org>2019-06-07 17:58:41 (GMT)
commite7e5039d6940e41839dcef0433262ff363408dad (patch)
tree7d00884ba4b1cf6ae526c1dda93a4d2080544b4d /Tools
parent740a84de73ad8d02655de0a084036f4b7e49a01b (diff)
downloadcpython-e7e5039d6940e41839dcef0433262ff363408dad.zip
cpython-e7e5039d6940e41839dcef0433262ff363408dad.tar.gz
cpython-e7e5039d6940e41839dcef0433262ff363408dad.tar.bz2
bpo-37181: Fix test_regrtest failures on Windows arm64 (GH-13872)
Diffstat (limited to 'Tools')
-rw-r--r--Tools/buildbot/test.bat2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/buildbot/test.bat b/Tools/buildbot/test.bat
index f430680..1566f46 100644
--- a/Tools/buildbot/test.bat
+++ b/Tools/buildbot/test.bat
@@ -9,6 +9,7 @@ set arm32_ssh=
:CheckOpts
if "%1"=="-x64" (set rt_opts=%rt_opts% %1) & shift & goto CheckOpts
+if "%1"=="-arm64" (set rt_opts=%rt_opts% %1) & shift & goto CheckOpts
if "%1"=="-arm32" (set rt_opts=%rt_opts% %1) & (set arm32_ssh=true) & 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
@@ -17,7 +18,6 @@ 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
-echo on
if "%arm32_ssh%"=="true" goto :Arm32Ssh
call "%here%..\..\PCbuild\rt.bat" %rt_opts% -uall -rwW --slowest --timeout=1200 --fail-env-changed %regrtest_args%