summaryrefslogtreecommitdiffstats
path: root/PCbuild
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-06-07 18:17:52 (GMT)
committerGitHub <noreply@github.com>2019-06-07 18:17:52 (GMT)
commit84d47bd8ad48f29ed5d333f4307408ad1e081f59 (patch)
tree08060c793befbf9d12763a7f7a90c0a20edeac8e /PCbuild
parent9689f80e61e5863668a562793ebb85031ef9fd3e (diff)
downloadcpython-84d47bd8ad48f29ed5d333f4307408ad1e081f59.zip
cpython-84d47bd8ad48f29ed5d333f4307408ad1e081f59.tar.gz
cpython-84d47bd8ad48f29ed5d333f4307408ad1e081f59.tar.bz2
bpo-37181: Fix test_regrtest failures on Windows arm64 (GH-13872)
(cherry picked from commit e7e5039d6940e41839dcef0433262ff363408dad) Co-authored-by: Paul Monson <paulmon@users.noreply.github.com>
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