summaryrefslogtreecommitdiffstats
path: root/PCbuild
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 /PCbuild
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 'PCbuild')
-rw-r--r--PCbuild/rt.bat1
1 files changed, 1 insertions, 0 deletions
diff --git a/PCbuild/rt.bat b/PCbuild/rt.bat
index e603de6..59f757c 100644
--- a/PCbuild/rt.bat
+++ b/PCbuild/rt.bat
@@ -39,6 +39,7 @@ if "%1"=="-O" (set dashO=-O) & shift & goto CheckOpts
if "%1"=="-q" (set qmode=yes) & shift & goto CheckOpts
if "%1"=="-d" (set suffix=_d) & shift & goto CheckOpts
if "%1"=="-x64" (set prefix=%pcbuild%amd64) & shift & goto CheckOpts
+if "%1"=="-arm64" (set prefix=%pcbuild%arm64) & shift & goto CheckOpts
if "%1"=="-arm32" (set prefix=%pcbuild%arm32) & shift & goto CheckOpts
if NOT "%1"=="" (set regrtestargs=%regrtestargs% %1) & shift & goto CheckOpts