From: Tarek Ziadé Date: Fri, 6 Feb 2009 13:33:47 +0000 (+0000) Subject: Merged revisions 69366 via svnmerge from X-Git-Tag: v3.1a1~260 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fce970af2b464c8d17b664af8d329836f9c46e16;p=thirdparty%2FPython%2Fcpython.git Merged revisions 69366 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r69366 | tarek.ziade | 2009-02-06 14:27:38 +0100 (Fri, 06 Feb 2009) | 1 line Fixed #5167: test_customize_compiler does not apply under non unix compilers ........ --- diff --git a/Lib/distutils/tests/test_sysconfig.py b/Lib/distutils/tests/test_sysconfig.py index cb802c62db6f..af6f18309762 100644 --- a/Lib/distutils/tests/test_sysconfig.py +++ b/Lib/distutils/tests/test_sysconfig.py @@ -1,6 +1,8 @@ """Tests for distutils.dist.""" from distutils import sysconfig +from distutils.ccompiler import get_default_compiler + import os import unittest @@ -41,6 +43,10 @@ class SysconfigTestCase(unittest.TestCase): def test_customize_compiler(self): + # not testing if default compiler is not unix + if get_default_compiler() != 'unix': + return + os.environ['AR'] = 'xxx' # make sure AR gets caught