summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine Pitrou <antoine@python.org>2019-05-27 19:57:23 +0200
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-05-27 10:57:23 -0700
commit695b1dd8cbf3a48fdb30ab96918a49b20b7ec3e7 (patch)
treed6cdb37a9751b0f6d60f0ac7811ce21832fb0377
parenta8e814db96ebfeb1f58bc471edffde2176c0ae05 (diff)
downloadcpython-git-695b1dd8cbf3a48fdb30ab96918a49b20b7ec3e7.tar.gz
bpo-32941: Fix test_madvise failure when page size >= 8kiB (GH-13596)
https://bugs.python.org/issue32941
-rw-r--r--Lib/test/test_mmap.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_mmap.py b/Lib/test/test_mmap.py
index 7b2b100dce..88c501d81a 100644
--- a/Lib/test/test_mmap.py
+++ b/Lib/test/test_mmap.py
@@ -13,6 +13,7 @@ mmap = import_module('mmap')
PAGESIZE = mmap.PAGESIZE
+
class MmapTests(unittest.TestCase):
def setUp(self):
@@ -741,7 +742,7 @@ class MmapTests(unittest.TestCase):
@unittest.skipUnless(hasattr(mmap.mmap, 'madvise'), 'needs madvise')
def test_madvise(self):
- size = 8192
+ size = 2 * PAGESIZE
m = mmap.mmap(-1, size)
with self.assertRaisesRegex(ValueError, "madvise start out of bounds"):