(original) (raw)

changeset: 76665:e64bec91ac91 user: Richard Oudkerk shibturn@gmail.com date: Mon Apr 30 14:48:51 2012 +0100 files: Lib/test/test_multiprocessing.py description: Issue #14669: Skip multiprocessing connection pickling test on MacOSX Passing of fds is unreliable on MacOSX, compare issues #6560 and #12958. diff -r aff7bb5811c3 -r e64bec91ac91 Lib/test/test_multiprocessing.py --- a/Lib/test/test_multiprocessing.py Mon Apr 30 14:48:50 2012 +0100 +++ b/Lib/test/test_multiprocessing.py Mon Apr 30 14:48:51 2012 +0100 @@ -1960,6 +1960,8 @@ # 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): /shibturn@gmail.com