diff options
Diffstat (limited to 'Lib/distutils/tests/test_unixccompiler.py')
| -rw-r--r-- | Lib/distutils/tests/test_unixccompiler.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Lib/distutils/tests/test_unixccompiler.py b/Lib/distutils/tests/test_unixccompiler.py index a5a63fdde3..3d14e12aa9 100644 --- a/Lib/distutils/tests/test_unixccompiler.py +++ b/Lib/distutils/tests/test_unixccompiler.py @@ -21,12 +21,8 @@ class UnixCCompilerTestCase(unittest.TestCase): sys.platform = self._backup_platform sysconfig.get_config_var = self._backup_get_config_var + @unittest.skipIf(sys.platform == 'win32', "can't test on Windows") def test_runtime_libdir_option(self): - - # not tested under windows - if sys.platform == 'win32': - return - # Issue#5900 # # Ensure RUNPATH is added to extension modules with RPATH if |
