mirror of
https://github.com/python/cpython.git
synced 2025-10-21 22:22:48 +00:00
Patch #1050475: Fix various x86_64 build issues
regrtest.py: skip rgbimg and imageop as they are not built on 64-bit systems. _tkinter.c: replace %.8x with %p for printing pointers. setup.py: add lib64 into the library directories.
This commit is contained in:
parent
deb39b5fef
commit
fba7369824
3 changed files with 11 additions and 3 deletions
|
@ -1099,6 +1099,10 @@ class _ExpectedSkips:
|
|||
if eval('test_codecmaps_' + cc).skip_expected:
|
||||
self.expected.add('test_codecmaps_' + cc)
|
||||
|
||||
if sys.maxint == 9223372036854775807L:
|
||||
self.expected.add('test_rgbimg')
|
||||
self.expected.add('test_imageop')
|
||||
|
||||
if not sys.platform in ("mac", "darwin"):
|
||||
MAC_ONLY = ["test_macostools", "test_macfs", "test_aepack",
|
||||
"test_plistlib", "test_scriptpackages"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue