summaryrefslogtreecommitdiff
path: root/Lib/distutils/tests/test_unixccompiler.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2017-09-04 16:36:05 -0700
committerGitHub <noreply@github.com>2017-09-04 16:36:05 -0700
commit069306312addf87252e2dbf250fc7632fc8b7da3 (patch)
tree92917032b65208b37ce8aeca6011d3eea30ce205 /Lib/distutils/tests/test_unixccompiler.py
parente1b0287c0440399e8cc855897113614fa5f6bc96 (diff)
downloadcpython-git-069306312addf87252e2dbf250fc7632fc8b7da3.tar.gz
remove IRIX support (closes bpo-31341) (#3310)
See PEP 11.
Diffstat (limited to 'Lib/distutils/tests/test_unixccompiler.py')
-rw-r--r--Lib/distutils/tests/test_unixccompiler.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/Lib/distutils/tests/test_unixccompiler.py b/Lib/distutils/tests/test_unixccompiler.py
index efba27e1c8..eef702cf01 100644
--- a/Lib/distutils/tests/test_unixccompiler.py
+++ b/Lib/distutils/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):