summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Heimes <christian@python.org>2022-07-25 06:44:40 +0200
committerGitHub <noreply@github.com>2022-07-25 06:44:40 +0200
commit5956de16cd00e7e1cf5cbf3d7b4a930eaa928321 (patch)
treea7872a26add0ff58d0e7eedc1a0478f813bf7b8e
parent3e718cf880e8994d76f6296a502497c16a956644 (diff)
downloadcpython-git-5956de16cd00e7e1cf5cbf3d7b4a930eaa928321.tar.gz
gh-95212: make multiprocessing test case parallel-safe (GH-95213)
-rw-r--r--Lib/test/_test_multiprocessing.py2
-rw-r--r--Misc/NEWS.d/next/Tests/2022-07-24-20-19-05.gh-issue-95212.fHiU4e.rst2
2 files changed, 3 insertions, 1 deletions
diff --git a/Lib/test/_test_multiprocessing.py b/Lib/test/_test_multiprocessing.py
index e3e7ee39eb..b78586c560 100644
--- a/Lib/test/_test_multiprocessing.py
+++ b/Lib/test/_test_multiprocessing.py
@@ -3973,7 +3973,7 @@ class _TestSharedMemory(BaseTestCase):
'multiprocessing.shared_memory._make_filename') as mock_make_filename:
NAME_PREFIX = shared_memory._SHM_NAME_PREFIX
- names = ['test01_fn', 'test02_fn']
+ names = [self._new_shm_name('test03_fn'), self._new_shm_name('test04_fn')]
# Prepend NAME_PREFIX which can be '/psm_' or 'wnsm_', necessary
# because some POSIX compliant systems require name to start with /
names = [NAME_PREFIX + name for name in names]
diff --git a/Misc/NEWS.d/next/Tests/2022-07-24-20-19-05.gh-issue-95212.fHiU4e.rst b/Misc/NEWS.d/next/Tests/2022-07-24-20-19-05.gh-issue-95212.fHiU4e.rst
new file mode 100644
index 0000000000..44cea181cc
--- /dev/null
+++ b/Misc/NEWS.d/next/Tests/2022-07-24-20-19-05.gh-issue-95212.fHiU4e.rst
@@ -0,0 +1,2 @@
+Make multiprocessing test case ``test_shared_memory_recreate``
+parallel-safe.