Commit 2bdadeb3 authored by Benjamin Peterson's avatar Benjamin Peterson

skip test on windows

parent 8c0974ac
......@@ -713,6 +713,7 @@ class MmapTests(unittest.TestCase):
gc_collect()
self.assertIs(wr(), None)
@unittest.skipIf(os.name == 'nt', 'cannot resize anonymous mmaps on Windows')
def test_resize_past_pos(self):
m = mmap.mmap(-1, 8192)
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