From: Richard Oudkerk Date: Mon, 30 Apr 2012 13:48:51 +0000 (+0100) Subject: Issue #14669: Skip multiprocessing connection pickling test on MacOSX X-Git-Tag: v3.3.0a3~17 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2452419921e43b6182fc3d2422fe1db2e4730786;p=thirdparty%2FPython%2Fcpython.git Issue #14669: Skip multiprocessing connection pickling test on MacOSX Passing of fds is unreliable on MacOSX, compare issues #6560 and #12958. --- diff --git a/Lib/test/test_multiprocessing.py b/Lib/test/test_multiprocessing.py index 089b76fd7a29..c87b967faaf4 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):