summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/tests/test_sysconfig.py
Commit message (Collapse)AuthorAgeFilesLines
* 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.