Commit 46550fff authored by Benjamin Peterson's avatar Benjamin Peterson

skip test on windows

parent d7cfae99
......@@ -652,6 +652,7 @@ class MmapTests(unittest.TestCase):
finally:
s.close()
@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