[Python-checkins] cpython: Issue #18963: skip test_selectors.test_above_fd_setsize on older OS X versions.

charles-francois.natali python-checkins at python.org
Sun Sep 8 12:36:17 CEST 2013


http://hg.python.org/cpython/rev/fa735675e485
changeset:   85621:fa735675e485
user:        Charles-François Natali <cf.natali at gmail.com>
date:        Sun Sep 08 12:31:32 2013 +0200
summary:
  Issue #18963: skip test_selectors.test_above_fd_setsize on older OS X versions.

files:
  Lib/test/test_selectors.py |  2 ++
  1 files changed, 2 insertions(+), 0 deletions(-)


diff --git a/Lib/test/test_selectors.py b/Lib/test/test_selectors.py
--- a/Lib/test/test_selectors.py
+++ b/Lib/test/test_selectors.py
@@ -301,6 +301,8 @@
 
 class ScalableSelectorMixIn:
 
+    # see issue #18963 for why it's skipped on older OS X versions
+    @support.requires_mac_ver(10, 5)
     @unittest.skipUnless(resource, "Test needs resource module")
     def test_above_fd_setsize(self):
         # A scalable implementation should have no problem with more than

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list