diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2004-11-13 11:13:35 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2004-11-13 11:13:35 (GMT) |
commit | fba73698240660d9154b6917b87dd333d6fb8284 (patch) | |
tree | 59897e4f17f73a79addb2d778c39f686c126b012 /Lib/test | |
parent | deb39b5fef12741d99619f6d25f1af287de883d0 (diff) | |
download | cpython-fba73698240660d9154b6917b87dd333d6fb8284.zip cpython-fba73698240660d9154b6917b87dd333d6fb8284.tar.gz cpython-fba73698240660d9154b6917b87dd333d6fb8284.tar.bz2 |
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.
Diffstat (limited to 'Lib/test')
-rwxr-xr-x | Lib/test/regrtest.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index 400cb48..4835e64 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -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"] |