[Python-checkins] bpo-40135: Fix multiprocessing test_shared_memory_across_processes() (GH-19892)

Hai Shi webhook-mailer at python.org
Mon May 4 11:06:03 EDT 2020


https://github.com/python/cpython/commit/caa3ef284a2e5e5b9bdd6a9e619804122c842d80
commit: caa3ef284a2e5e5b9bdd6a9e619804122c842d80
branch: master
author: Hai Shi <shihai1992 at gmail.com>
committer: GitHub <noreply at github.com>
date: 2020-05-04T17:05:54+02:00
summary:

bpo-40135: Fix multiprocessing test_shared_memory_across_processes() (GH-19892)

Don't define shared memory block's name in test_shared_memory_across_processes():
use SharedMemory(create=True) instead.

files:
M Lib/test/_test_multiprocessing.py

diff --git a/Lib/test/_test_multiprocessing.py b/Lib/test/_test_multiprocessing.py
index dd894f21f7afc..dc8164f3288e1 100644
--- a/Lib/test/_test_multiprocessing.py
+++ b/Lib/test/_test_multiprocessing.py
@@ -3860,7 +3860,9 @@ class OptionalAttachSharedMemory(shared_memory.SharedMemory):
         sms.close()
 
     def test_shared_memory_across_processes(self):
-        sms = shared_memory.SharedMemory('test02_tsmap', True, size=512)
+        # bpo-40135: don't define shared memory block's name in case of
+        # the failure when we run multiprocessing tests in parallel.
+        sms = shared_memory.SharedMemory(create=True, size=512)
         self.addCleanup(sms.unlink)
 
         # Verify remote attachment to existing block by name is working.



More information about the Python-checkins mailing list