diff options
author | Thomas Moreau <thomas.moreau.2010@gmail.com> | 2018-03-21 17:56:27 (GMT) |
---|---|---|
committer | Antoine Pitrou <pitrou@free.fr> | 2018-03-21 17:56:27 (GMT) |
commit | dec1c7786f642049c2508e909442189dc043b5da (patch) | |
tree | 3516146e3c3c9c15b7a16f37614582695976702a | |
parent | e2f33add635df4fde81be9960bab367e010c19bf (diff) | |
download | cpython-dec1c7786f642049c2508e909442189dc043b5da.zip cpython-dec1c7786f642049c2508e909442189dc043b5da.tar.gz cpython-dec1c7786f642049c2508e909442189dc043b5da.tar.bz2 |
FIX failure on OSX sem_getvalue (#6180)
-rw-r--r-- | Lib/test/_test_multiprocessing.py | 9 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Library/2018-03-21-17-59-39.bpo-33078.PQOniT.rst | 1 |
2 files changed, 8 insertions, 2 deletions
diff --git a/Lib/test/_test_multiprocessing.py b/Lib/test/_test_multiprocessing.py index c787702..c6a1f5c 100644 --- a/Lib/test/_test_multiprocessing.py +++ b/Lib/test/_test_multiprocessing.py @@ -1062,11 +1062,16 @@ class _TestQueue(BaseTestCase): q = self.Queue(maxsize=1) q.put(NotSerializable()) q.put(True) - self.assertEqual(q.qsize(), 1) + try: + self.assertEqual(q.qsize(), 1) + except NotImplementedError: + # qsize is not available on all platform as it + # relies on sem_getvalue + pass # bpo-30595: use a timeout of 1 second for slow buildbots self.assertTrue(q.get(timeout=1.0)) # Check that the size of the queue is correct - self.assertEqual(q.qsize(), 0) + self.assertTrue(q.empty()) close_queue(q) def test_queue_feeder_on_queue_feeder_error(self): diff --git a/Misc/NEWS.d/next/Library/2018-03-21-17-59-39.bpo-33078.PQOniT.rst b/Misc/NEWS.d/next/Library/2018-03-21-17-59-39.bpo-33078.PQOniT.rst new file mode 100644 index 0000000..8b71bb3 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2018-03-21-17-59-39.bpo-33078.PQOniT.rst @@ -0,0 +1 @@ +Fix the failure on OSX caused by the tests relying on sem_getvalue |