]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-107888: Fix test_mmap.test_access_parameter() on macOS 14 (#109928)
authorVictor Stinner <vstinner@python.org>
Tue, 26 Sep 2023 22:26:34 +0000 (00:26 +0200)
committerGitHub <noreply@github.com>
Tue, 26 Sep 2023 22:26:34 +0000 (00:26 +0200)
Lib/test/test_mmap.py

index bab868600895c1c2bb437816da082b09d3f19d8c..92c99d645b25cca005ac733fdaaa018bf4753bd0 100644 (file)
@@ -255,10 +255,15 @@ class MmapTests(unittest.TestCase):
             # 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()
+                try:
+                    m = mmap.mmap(f.fileno(), mapsize, prot=prot)
+                except PermissionError:
+                    # on macOS 14, PROT_READ | PROT_WRITE is not allowed
+                    pass
+                else:
+                    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...