diff options
| author | Benjamin Peterson <benjamin@python.org> | 2017-09-04 16:36:05 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-09-04 16:36:05 -0700 |
| commit | c3052243e0aa7e756645a116fef7ed9ff09bfd5e (patch) | |
| tree | e983ee6d782e72ab99df524e696c332b922d376a /tests | |
| parent | 252748ea7dc284747562b5de212aba51d79a2479 (diff) | |
| download | python-setuptools-git-c3052243e0aa7e756645a116fef7ed9ff09bfd5e.tar.gz | |
remove IRIX support (closes bpo-31341) (#3310)
See PEP 11.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/test_unixccompiler.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/test_unixccompiler.py b/tests/test_unixccompiler.py index efba27e1..eef702cf 100644 --- a/tests/test_unixccompiler.py +++ b/tests/test_unixccompiler.py @@ -51,14 +51,6 @@ class UnixCCompilerTestCase(unittest.TestCase): sysconfig.get_config_var = old_gcv - # irix646 - sys.platform = 'irix646' - self.assertEqual(self.cc.rpath_foo(), ['-rpath', '/foo']) - - # osf1V5 - sys.platform = 'osf1V5' - self.assertEqual(self.cc.rpath_foo(), ['-rpath', '/foo']) - # GCC GNULD sys.platform = 'bar' def gcv(v): |
