summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/tests/test_sysconfig.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #13590: OS X Xcode 4 - improve support for universal extension modulesNed Deily2013-01-311-0/+29
| | | | | | | | | | | | | | | | 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.
* Merged revisions 86596 via svnmerge fromEzio Melotti2010-11-211-5/+5
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86596 | ezio.melotti | 2010-11-20 21:04:17 +0200 (Sat, 20 Nov 2010) | 1 line #9424: Replace deprecated assert* methods in the Python test suite. ........
* Merged revisions 86223-86224,86226,86234 via svnmerge fromÉric Araujo2010-11-061-6/+10
| | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86223 | eric.araujo | 2010-11-06 00:51:56 +0100 (sam., 06 nov. 2010) | 2 lines Always close files in distutils code and tests (#10252). ........ r86224 | eric.araujo | 2010-11-06 00:58:34 +0100 (sam., 06 nov. 2010) | 2 lines Add missing entry for r86223. ........ r86226 | eric.araujo | 2010-11-06 00:59:32 +0100 (sam., 06 nov. 2010) | 2 lines Of course, I forgot one file in r86223. ........ r86234 | eric.araujo | 2010-11-06 03:10:32 +0100 (sam., 06 nov. 2010) | 2 lines Also close file descriptors from os.popen and subprocess.Popen ........
* Add missing import when running these tests standalone.Georg Brandl2010-02-061-0/+1
|
* taking sysconfig out of distutilsTarek Ziadé2010-01-231-30/+3
|
* Changed distutils tests to avoid environment alterationTarek Ziadé2009-10-181-2/+10
|
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-6/+6
|
* Fixed #5201: now distutils.sysconfig.parse_makefile() understands '53264' in ↵Tarek Ziadé2009-06-111-0/+33
| | | | Makefiles
* refactored test_sysconfig so it uses test.test_support.EnvironmentVarGuardTarek Ziadé2009-05-101-19/+8
|
* fixed AR/ARFLAGS values in test_sysconfigTarek Ziadé2009-05-071-3/+7
|
* Fixed #5941: added ARFLAGS for the archiver command.Tarek Ziadé2009-05-071-2/+3
|
* Fixed #3386: the optional prefix argument was ignored under OS2 and NT in ↵Tarek Ziadé2009-02-101-0/+2
| | | | distutils.sysconfig.get_python_lib
* Fixed #5167: test_customize_compiler does not apply under non unix compilersTarek Ziadé2009-02-061-0/+6
|
* fixed #1520877: now distutils reads Read from the environment/MakefileTarek Ziadé2009-02-061-0/+22
|
* Since sysconfig.get_python_inc() now works when building in aNeil Schemenauer2009-02-051-21/+4
| | | | | directory other than the source directory, simplify the test code in test_sysconfig.py.
* Fix test_distutils to not fail when running 'make test' from a Python buildThomas Wouters2008-04-051-1/+21
| | | | | | | | | directory that is not the source directory (ie, one created using '/path/to/source/configure'.) Leaves this test very slightly degraded in that particular case, compared to the build-in-sourcedir case, but that case isn't a particularly strong test either: neither test the actual path that will be used after installing. There isn't a particularly good way to test this, and a poor test beats a failing test.
* Patch #2167 from calvin: Remove unused importsChristian Heimes2008-02-231-1/+0
|
* Fixed bug #1628Christian Heimes2007-12-141-1/+1
| | | | The detection now works on Unix with Makefile, Makefile with VPATH and on Windows.
* Disabled one test that is failing on UnixChristian Heimes2007-12-061-1/+2
|
* Fixed get_config_h_filename for Windows. Without the patch it can't find the ↵Christian Heimes2007-12-061-0/+36
pyconfig.h file inside a build tree. Added several small unit tests for sysconfig.