From: Tarek Ziadé Date: Fri, 6 Feb 2009 13:27:38 +0000 (+0000) Subject: Fixed #5167: test_customize_compiler does not apply under non unix compilers X-Git-Tag: v2.7a1~2096 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0d6705b23473f3b3c22c14a86c9e8af7fb16a917;p=thirdparty%2FPython%2Fcpython.git 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 7f0bce63c9f9..4636c0c127d7 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