mirror of
https://github.com/python/cpython.git
synced 2026-05-17 01:49:12 -04:00
skip test if resizing is not supported
This commit is contained in:
@@ -717,7 +717,10 @@ class MmapTests(unittest.TestCase):
|
||||
m = mmap.mmap(-1, 8192)
|
||||
self.addCleanup(m.close)
|
||||
m.read(5000)
|
||||
m.resize(4096)
|
||||
try:
|
||||
m.resize(4096)
|
||||
except SystemError:
|
||||
self.skipTest("resizing not supported")
|
||||
self.assertEqual(m.read(14), b'')
|
||||
self.assertRaises(ValueError, m.read_byte,)
|
||||
self.assertRaises(ValueError, m.write_byte, 42)
|
||||
|
||||
Reference in New Issue
Block a user