diff options
author | Richard Oudkerk <shibturn@gmail.com> | 2012-04-30 13:48:51 (GMT) |
---|---|---|
committer | Richard Oudkerk <shibturn@gmail.com> | 2012-04-30 13:48:51 (GMT) |
commit | 2452419921e43b6182fc3d2422fe1db2e4730786 (patch) | |
tree | 4e929d6781323c337b35d4daf53377cabd4aa3e0 /Lib/test/test_multiprocessing.py | |
parent | 4460c3476d9099d0e05db8a763053c973d2d8be8 (diff) | |
download | cpython-2452419921e43b6182fc3d2422fe1db2e4730786.zip cpython-2452419921e43b6182fc3d2422fe1db2e4730786.tar.gz cpython-2452419921e43b6182fc3d2422fe1db2e4730786.tar.bz2 |
Issue #14669: Skip multiprocessing connection pickling test on MacOSX
Passing of fds is unreliable on MacOSX, compare issues #6560 and #12958.
Diffstat (limited to 'Lib/test/test_multiprocessing.py')
-rw-r--r-- | Lib/test/test_multiprocessing.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_multiprocessing.py b/Lib/test/test_multiprocessing.py index 089b76f..c87b967 100644 --- a/Lib/test/test_multiprocessing.py +++ b/Lib/test/test_multiprocessing.py @@ -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): |