summaryrefslogtreecommitdiff
path: root/Lib/test/test_mmap.py
diff options
context:
space:
mode:
authorRichard Oudkerk <shibturn@gmail.com>2013-02-13 12:33:53 +0000
committerRichard Oudkerk <shibturn@gmail.com>2013-02-13 12:33:53 +0000
commit76450e6a84fe25db47326ef865ca9ea3968d319f (patch)
tree5eda20648c8957a1b5c53acfe1d1493c4a036aad /Lib/test/test_mmap.py
parent082022b68308cc45639b450ce0c55f183a784b67 (diff)
parent6d40134eba5633e93a4c45d0d2868b9f1a02439a (diff)
downloadcpython-git-76450e6a84fe25db47326ef865ca9ea3968d319f.tar.gz
Merge
Diffstat (limited to 'Lib/test/test_mmap.py')
-rw-r--r--Lib/test/test_mmap.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/Lib/test/test_mmap.py b/Lib/test/test_mmap.py
index 3d883a9f20..505ffba74e 100644
--- a/Lib/test/test_mmap.py
+++ b/Lib/test/test_mmap.py
@@ -721,6 +721,13 @@ class LargeMmapTests(unittest.TestCase):
def test_large_filesize(self):
with self._make_test_file(0x17FFFFFFF, b" ") as f:
+ if sys.maxsize < 0x180000000:
+ # On 32 bit platforms the file is larger than sys.maxsize so
+ # mapping the whole file should fail -- Issue #16743
+ with self.assertRaises(OverflowError):
+ mmap.mmap(f.fileno(), 0x180000000, access=mmap.ACCESS_READ)
+ with self.assertRaises(ValueError):
+ mmap.mmap(f.fileno(), 0, access=mmap.ACCESS_READ)
with mmap.mmap(f.fileno(), 0x10000, access=mmap.ACCESS_READ) as m:
self.assertEqual(m.size(), 0x180000000)