mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
bpo-45042: Now test classes decorated with requires_hashdigest
are not skipped (GH-28060)
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
This commit is contained in:
parent
a1ba3597d2
commit
dd7b816ac8
4 changed files with 22 additions and 6 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue