From: Benjamin Peterson Date: Thu, 6 Oct 2016 05:09:31 +0000 (-0700) Subject: skip test on windows X-Git-Tag: v3.6.0b2~42^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4c8b2cd12650a05d87f3cef7f457bfddaf79c0e0;p=python skip test on windows --- diff --git a/Lib/test/test_mmap.py b/Lib/test/test_mmap.py index c5577aa958..f3f70cc251 100644 --- a/Lib/test/test_mmap.py +++ b/Lib/test/test_mmap.py @@ -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)