diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-03-06 01:47:18 +0100 |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-03-06 01:47:18 +0100 |
commit | 4a781542fbb3bc7f8d0571b2b72549674ecf901b (patch) | |
tree | 6042f5e20f6dcd1eccb5bb4b172f603b4451ceb6 | |
parent | 6a3c5672eb97c79ff95622dfe4acc4bf3e7dfd12 (diff) | |
download | cpython-4a781542fbb3bc7f8d0571b2b72549674ecf901b.tar.gz |
Fix buildbot failure following 97a5590b9291
-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 056b9ec7f3..0822cc12c3 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) |