diff options
author | Charles-François Natali <cf.natali@gmail.com> | 2013-09-08 10:31:32 (GMT) |
---|---|---|
committer | Charles-François Natali <cf.natali@gmail.com> | 2013-09-08 10:31:32 (GMT) |
commit | 807ba8552a5e6dffa4d15f8f9a1e2679507efcfb (patch) | |
tree | d017812bc3445595f4d0778d6c96d38b1e14ceb8 /Lib/test/test_selectors.py | |
parent | 833bf1fcb256ea28d0ecf16ab097ff9de2396cb5 (diff) | |
download | cpython-807ba8552a5e6dffa4d15f8f9a1e2679507efcfb.zip cpython-807ba8552a5e6dffa4d15f8f9a1e2679507efcfb.tar.gz cpython-807ba8552a5e6dffa4d15f8f9a1e2679507efcfb.tar.bz2 |
Issue #18963: skip test_selectors.test_above_fd_setsize on older OS X versions.
Diffstat (limited to 'Lib/test/test_selectors.py')
-rw-r--r-- | 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 index 8041187..6ce4d8a 100644 --- a/Lib/test/test_selectors.py +++ b/Lib/test/test_selectors.py @@ -301,6 +301,8 @@ class BaseSelectorTestCase(unittest.TestCase): 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 |