mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Issue #14669: Skip multiprocessing connection pickling test on MacOSX
Passing of fds is unreliable on MacOSX, compare issues #6560 and #12958.
This commit is contained in:
parent
4460c3476d
commit
2452419921
1 changed files with 2 additions and 0 deletions
|
@ -1960,6 +1960,8 @@ class _TestPoll(unittest.TestCase):
|
|||
# Test of sending connection and socket objects between processes
|
||||
#
|
||||
|
||||
# Intermittent fails on Mac OS X -- see Issue14669 and Issue12958
|
||||
@unittest.skipIf(sys.platform == "darwin", "fd passing unreliable on Mac OS X")
|
||||
@unittest.skipUnless(HAS_REDUCTION, "test needs multiprocessing.reduction")
|
||||
class _TestPicklingConnections(BaseTestCase):
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue