diff options
| author | Tarek Ziadé <ziade.tarek@gmail.com> | 2010-07-22 12:50:05 +0000 |
|---|---|---|
| committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2010-07-22 12:50:05 +0000 |
| commit | 07be936471d1459a64a755dc90a53121a8ca41e9 (patch) | |
| tree | b0006ca9f93d98c5246224cd42692528e4ee20d4 /tests/test_unixccompiler.py | |
| parent | b97dbcf42d529ab4dfb2896cef8c0d53960595d7 (diff) | |
| download | python-setuptools-git-07be936471d1459a64a755dc90a53121a8ca41e9.tar.gz | |
reverted distutils its 3.1 state. All new work is now happening in disutils2, and distutils is now feature-frozen.
Diffstat (limited to 'tests/test_unixccompiler.py')
| -rw-r--r-- | tests/test_unixccompiler.py | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/tests/test_unixccompiler.py b/tests/test_unixccompiler.py index 6976dd55..3a41e6fc 100644 --- a/tests/test_unixccompiler.py +++ b/tests/test_unixccompiler.py @@ -1,8 +1,8 @@ """Tests for distutils.unixccompiler.""" import sys import unittest -import sysconfig +from distutils import sysconfig from distutils.unixccompiler import UnixCCompiler class UnixCCompilerTestCase(unittest.TestCase): @@ -114,14 +114,6 @@ class UnixCCompilerTestCase(unittest.TestCase): sysconfig.get_config_var = gcv self.assertEqual(self.cc.rpath_foo(), '-R/foo') - # AIX C/C++ linker - sys.platform = 'aix' - def gcv(v): - return 'xxx' - sysconfig.get_config_var = gcv - self.assertEqual(self.cc.rpath_foo(), '-blibpath:/foo') - - def test_suite(): return unittest.makeSuite(UnixCCompilerTestCase) |
