summaryrefslogtreecommitdiff
path: root/Lib/test/test_mmap.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-03-06 01:50:56 +0100
committerAntoine Pitrou <solipsis@pitrou.net>2011-03-06 01:50:56 +0100
commit80d3610bc36e484fbe7b7ccce366a73314505a16 (patch)
treec556a1c12243ab1aff37c19cb4f12a83fafd9d50 /Lib/test/test_mmap.py
parentd1b1991fd426259c20ef044388235af5cc689a7c (diff)
parent7b50c2c6aed2754f205835420d7450f2e401ebfd (diff)
downloadcpython-git-80d3610bc36e484fbe7b7ccce366a73314505a16.tar.gz
Merge fix for issue #11391
Diffstat (limited to 'Lib/test/test_mmap.py')
-rw-r--r--Lib/test/test_mmap.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/Lib/test/test_mmap.py b/Lib/test/test_mmap.py
index cbef37441d..9b7100d7a2 100644
--- a/Lib/test/test_mmap.py
+++ b/Lib/test/test_mmap.py
@@ -234,6 +234,14 @@ class MmapTests(unittest.TestCase):
flags=mmap.MAP_PRIVATE,
prot=mmap.PROT_READ, access=mmap.ACCESS_WRITE)
+ # Try writing with PROT_EXEC and without PROT_WRITE
+ prot = mmap.PROT_READ | getattr(mmap, 'PROT_EXEC', 0)
+ with open(TESTFN, "r+b") as f:
+ m = mmap.mmap(f.fileno(), mapsize, prot=prot)
+ self.assertRaises(TypeError, m.write, b"abcdef")
+ self.assertRaises(TypeError, m.write_byte, 0)
+ m.close()
+
def test_bad_file_desc(self):
# Try opening a bad file descriptor...
self.assertRaises(mmap.error, mmap.mmap, -2, 4096)