[Python-checkins] bpo-36511: Fix -u parameters for ARM32 tests (GH-14280)

Steve Dower webhook-mailer at python.org
Fri Jun 21 17:39:53 EDT 2019


https://github.com/python/cpython/commit/f3e38ec7f014557296f6cc7b60a33d65faad1716
commit: f3e38ec7f014557296f6cc7b60a33d65faad1716
branch: 3.8
author: Steve Dower <steve.dower at python.org>
committer: GitHub <noreply at github.com>
date: 2019-06-21T14:39:49-07:00
summary:

bpo-36511: Fix -u parameters for ARM32 tests (GH-14280)

files:
M Tools/buildbot/test.bat

diff --git a/Tools/buildbot/test.bat b/Tools/buildbot/test.bat
index 63b37d3ea902..a0fc6b9a9458 100644
--- a/Tools/buildbot/test.bat
+++ b/Tools/buildbot/test.bat
@@ -27,7 +27,7 @@ call "%here%..\..\PCbuild\rt.bat" %rt_opts% -uall -rwW --slowest --timeout=1200
 exit /b %ERRORLEVEL%
 
 :Arm32Ssh
-set dashU=-unetwork,decimal,subprocess,urlfetch,tzdata
+set dashU=-unetwork -udecimal -usubprocess -uurlfetch -utzdata
 if "%SSH_SERVER%"=="" goto :Arm32SshHelp
 if "%PYTHON_SOURCE%"=="" (set PYTHON_SOURCE=%here%..\..\)
 if "%REMOTE_PYTHON_DIR%"=="" (set REMOTE_PYTHON_DIR=C:\python\)



More information about the Python-checkins mailing list