aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/_test_multiprocessing.py
diff options
context:
space:
mode:
authorNikita Sobolev <mail@sobolevn.me>2021-09-04 23:42:36 +0300
committerGitHub <noreply@github.com>2021-09-04 23:42:36 +0300
commitdd7b816ac87e468e2fa65ce83c2a03fe1da8503e (patch)
tree12001af79d0e03ee96993f5a3d2084de52e3db31 /Lib/test/_test_multiprocessing.py
parenta1ba3597d2d2dd5e5d73f42b1174ab5e0a2cd224 (diff)
downloadcpython-dd7b816ac87e468e2fa65ce83c2a03fe1da8503e.tar.gz
cpython-dd7b816ac87e468e2fa65ce83c2a03fe1da8503e.zip
bpo-45042: Now test classes decorated with `requires_hashdigest` are not skipped (GH-28060)
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Diffstat (limited to 'Lib/test/_test_multiprocessing.py')
-rw-r--r--Lib/test/_test_multiprocessing.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/_test_multiprocessing.py b/Lib/test/_test_multiprocessing.py
index 7e0b7571097..0f4e4fd910b 100644
--- a/Lib/test/_test_multiprocessing.py
+++ b/Lib/test/_test_multiprocessing.py
@@ -3773,6 +3773,7 @@ class _TestSharedMemory(BaseTestCase):
local_sms.buf[:len(binary_data)] = binary_data
local_sms.close()
+ @unittest.skipIf(sys.platform == "win32", "test is broken on Windows")
def test_shared_memory_basics(self):
sms = shared_memory.SharedMemory('test01_tsmb', create=True, size=512)
self.addCleanup(sms.unlink)