Kaydet (Commit) 46550fff authored tarafından Benjamin Peterson's avatar Benjamin Peterson

skip test on windows

üst d7cfae99
...@@ -652,6 +652,7 @@ class MmapTests(unittest.TestCase): ...@@ -652,6 +652,7 @@ class MmapTests(unittest.TestCase):
finally: finally:
s.close() s.close()
@unittest.skipIf(os.name == 'nt', 'cannot resize anonymous mmaps on Windows')
def test_resize_past_pos(self): def test_resize_past_pos(self):
m = mmap.mmap(-1, 8192) m = mmap.mmap(-1, 8192)
self.addCleanup(m.close) self.addCleanup(m.close)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment