cpython/Lib/distutils/tests
Ned Deily 18fae3f954 Issue #13590: OS X Xcode 4 - improve support for universal extension modules
In particular, fix extension module build failures when trying to use
    32-bit-only installer Pythons on systems with Xcode 4 (currently
    OS X 10.8, 10.7, and optionally 10.6).
    * Backport 3.3.0 fixes to 2.7 branch (for release in 2.7.4)
    * Since Xcode 4 removes ppc support, extension module builds now
      check for ppc compiler support and by default remove ppc and
      ppc64 archs when they are not available.
    * Extension module builds now revert to using system installed
      headers and libs (/usr and /System/Library) if the SDK used
      to build the interpreter is not installed or has moved.
    * Try to avoid building extension modules with deprecated
      and problematic Apple llvm-gcc compiler.  If original compiler
      is not available, use clang instead by default.
2013-01-31 01:24:55 -08:00
..
Setup.sample Remove unnecessary executable bit on one distutils file 2011-06-04 20:45:33 +02:00
__init__.py Merged revisions 86236,86240,86332,86340,87271,87273,87447 via svnmerge from 2011-02-03 00:12:18 +00:00
setuptools_build_ext.py files used by win32 tests 2010-03-06 01:27:09 +00:00
setuptools_extension.py files used by win32 tests 2010-03-06 01:27:09 +00:00
support.py Issue #13901: Prevent test_distutils failures on OS X with --enable-shared. 2012-02-03 02:39:49 +01:00
test_archive_util.py Limit test scope to those platforms that can save the target filenames. Reference #11638. 2011-12-28 11:42:22 -05:00
test_bdist.py Make bdist_* commands respect --skip-build passed to bdist (#10946) 2011-08-30 01:48:59 +02:00
test_bdist_dumb.py Synchronize some distutils tests with 3.2. 2012-02-26 01:53:53 +01:00
test_bdist_msi.py Backout buggy patch for #13719 2012-03-07 21:00:44 +01:00
test_bdist_rpm.py Stop ignoring RPMs in distutils' upload command (#2945). 2012-02-26 01:16:47 +01:00
test_bdist_wininst.py Add missing import when running these tests standalone. 2010-02-06 23:53:52 +00:00
test_build.py Merged revisions 86236,86240,86332,86340,87271,87273,87447 via svnmerge from 2011-02-03 00:12:18 +00:00
test_build_clib.py Issue #13994: Earler partial revert of Distutils enhancements in 2.7 2012-02-11 20:40:24 +01:00
test_build_ext.py - Issue #17041: Fix testing when Python is configured with the 2013-01-27 19:45:49 +02:00
test_build_py.py Fix test_distutils when sys.dont_write_bytecode is true (#9831). 2011-05-28 23:21:19 +02:00
test_build_scripts.py Merged revisions 86236,86240,86332,86340,87271,87273,87447 via svnmerge from 2011-02-03 00:12:18 +00:00
test_ccompiler.py Issue #13994: Earler partial revert of Distutils enhancements in 2.7 2012-02-11 20:40:24 +01:00
test_check.py Fix distutils’ check and register Unicode handling (#13114). 2011-10-09 07:11:19 +02:00
test_clean.py #11565: Fix several typos. Patch by Piotr Kasprzyk. 2011-03-16 12:34:31 +02:00
test_cmd.py Merged revisions 86236,86240,86332,86340,87271,87273,87447 via svnmerge from 2011-02-03 00:12:18 +00:00
test_config.py Merged revisions 86236,86240,86332,86340,87271,87273,87447 via svnmerge from 2011-02-03 00:12:18 +00:00
test_config_cmd.py Make C code in one distutils test comply with ISO C (#10359). 2011-10-08 02:15:55 +02:00
test_core.py Merged revisions 86236,86240,86332,86340,87271,87273,87447 via svnmerge from 2011-02-03 00:12:18 +00:00
test_dep_util.py Merged revisions 86236,86240,86332,86340,87271,87273,87447 via svnmerge from 2011-02-03 00:12:18 +00:00
test_dir_util.py Ignore .nfs* files in distutils (#7719). 2012-07-03 01:12:42 -04:00
test_dist.py Fix determination of Metadata version (#8933). Patch by Filip Gruszczyński. 2011-09-10 05:39:45 +02:00
test_file_util.py Merged revisions 86236,86240,86332,86340,87271,87273,87447 via svnmerge from 2011-02-03 00:12:18 +00:00
test_filelist.py Fix long-standing bugs with MANIFEST.in parsing on Windows (#6884). 2012-02-25 16:13:53 +01:00
test_install.py Synchronize some distutils tests with 3.2. 2012-02-26 01:53:53 +01:00
test_install_data.py Merged revisions 86236,86240,86332,86340,87271,87273,87447 via svnmerge from 2011-02-03 00:12:18 +00:00
test_install_headers.py Merged revisions 86236,86240,86332,86340,87271,87273,87447 via svnmerge from 2011-02-03 00:12:18 +00:00
test_install_lib.py Merged revisions 86236,86240,86332,86340,87271,87273,87447 via svnmerge from 2011-02-03 00:12:18 +00:00
test_install_scripts.py Merged revisions 86236,86240,86332,86340,87271,87273,87447 via svnmerge from 2011-02-03 00:12:18 +00:00
test_msvc9compiler.py Issue #16714: use 'raise' exceptions, don't 'throw'. 2012-12-18 21:27:37 +02:00
test_register.py Use proper skip instead of reporting success in one distutils test 2012-12-08 22:30:47 -05:00
test_sdist.py Ignore .nfs* files in distutils (#7719). 2012-07-03 01:12:42 -04:00
test_spawn.py Merged revisions 86236,86240,86332,86340,87271,87273,87447 via svnmerge from 2011-02-03 00:12:18 +00:00
test_sysconfig.py Issue #13590: OS X Xcode 4 - improve support for universal extension modules 2013-01-31 01:24:55 -08:00
test_text_file.py Merged revisions 86236,86240,86332,86340,87271,87273,87447 via svnmerge from 2011-02-03 00:12:18 +00:00
test_unixccompiler.py Merged revisions 86236,86240,86332,86340,87271,87273,87447 via svnmerge from 2011-02-03 00:12:18 +00:00
test_upload.py Merged revisions 86236,86240,86332,86340,87271,87273,87447 via svnmerge from 2011-02-03 00:12:18 +00:00
test_util.py Merged revisions 86236,86240,86332,86340,87271,87273,87447 via svnmerge from 2011-02-03 00:12:18 +00:00
test_version.py Merged revisions 86236,86240,86332,86340,87271,87273,87447 via svnmerge from 2011-02-03 00:12:18 +00:00
test_versionpredicate.py Merged revisions 86236,86240,86332,86340,87271,87273,87447 via svnmerge from 2011-02-03 00:12:18 +00:00