Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
setuptools
Commits
69b93502
Commit
69b93502
authored
Jun 12, 2019
by
Paul Monson
Committed by
Steve Dower
Jun 12, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-37201: fix test_distutils failures for Windows ARM64 (GH-13902)
parent
d048c412
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
0 deletions
+8
-0
_msvccompiler.py
_msvccompiler.py
+2
-0
tests/test_bdist_wininst.py
tests/test_bdist_wininst.py
+4
-0
util.py
util.py
+2
-0
No files found.
_msvccompiler.py
View file @
69b93502
...
...
@@ -93,6 +93,7 @@ PLAT_SPEC_TO_RUNTIME = {
'x86'
:
'x86'
,
'x86_amd64'
:
'x64'
,
'x86_arm'
:
'arm'
,
'x86_arm64'
:
'arm64'
}
def
_find_vcvarsall
(
plat_spec
):
...
...
@@ -190,6 +191,7 @@ PLAT_TO_VCVARS = {
'win32'
:
'x86'
,
'win-amd64'
:
'x86_amd64'
,
'win-arm32'
:
'x86_arm'
,
'win-arm64'
:
'x86_arm64'
}
# A set containing the DLLs that are guaranteed to be available for
...
...
tests/test_bdist_wininst.py
View file @
69b93502
"""Tests for distutils.command.bdist_wininst."""
import
sys
import
platform
import
unittest
from
test.support
import
run_unittest
from
distutils.command.bdist_wininst
import
bdist_wininst
from
distutils.tests
import
support
@
unittest
.
skipIf
(
sys
.
platform
==
'win32'
and
platform
.
machine
()
==
'ARM64'
,
'bdist_wininst is not supported in this install'
)
@
unittest
.
skipIf
(
getattr
(
bdist_wininst
,
'_unsupported'
,
False
),
'bdist_wininst is not supported in this install'
)
class
BuildWinInstTestCase
(
support
.
TempdirManager
,
...
...
util.py
View file @
69b93502
...
...
@@ -40,6 +40,8 @@ def get_host_platform():
return
'win-amd64'
if
'(arm)'
in
sys
.
version
.
lower
():
return
'win-arm32'
if
'(arm64)'
in
sys
.
version
.
lower
():
return
'win-arm64'
return
sys
.
platform
# Set for cross builds explicitly
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment