diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-03-06 00:47:18 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-03-06 00:47:18 (GMT) |
commit | 7b50c2c6aed2754f205835420d7450f2e401ebfd (patch) | |
tree | fdc68fdd6b9299430af5f49d363dba29ab27c95f /Lib/test | |
parent | 16a0a0b0a0b42dd42f2206a864d6325a278796f7 (diff) | |
download | cpython-7b50c2c6aed2754f205835420d7450f2e401ebfd.zip cpython-7b50c2c6aed2754f205835420d7450f2e401ebfd.tar.gz cpython-7b50c2c6aed2754f205835420d7450f2e401ebfd.tar.bz2 |
Fix buildbot failure following 97a5590b9291
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_mmap.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_mmap.py b/Lib/test/test_mmap.py index 056b9ec..0822cc1 100644 --- a/Lib/test/test_mmap.py +++ b/Lib/test/test_mmap.py @@ -237,14 +237,14 @@ class MmapTests(unittest.TestCase): prot=mmap.PROT_READ, access=mmap.ACCESS_WRITE) f.close() - # Try writting without PROT_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=~mmap.PROT_WRITE) + 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) |