diff options
| author | Serhiy Storchaka <storchaka@gmail.com> | 2013-12-18 16:41:01 +0200 |
|---|---|---|
| committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-12-18 16:41:01 +0200 |
| commit | 89924f9e965ce58b5ceab3545989e6d827931d2f (patch) | |
| tree | 9f30a9329427bb1ff41b4e1704e8ca90b0094fd7 /tests/test_unixccompiler.py | |
| parent | f011989a6fd186c6f0d5bfd7506ef6ebe6ae9513 (diff) | |
| download | python-setuptools-git-89924f9e965ce58b5ceab3545989e6d827931d2f.tar.gz | |
Issue #19492: Silently skipped distutils tests now reported as skipped.
Diffstat (limited to 'tests/test_unixccompiler.py')
| -rw-r--r-- | tests/test_unixccompiler.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/test_unixccompiler.py b/tests/test_unixccompiler.py index a5a63fdd..3d14e12a 100644 --- a/tests/test_unixccompiler.py +++ b/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 |
