]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.12] gh-146531: Skip hanging `wm iconbitmap` test on macOS 26 Intel (GH-148032...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 6 Jul 2026 12:42:15 +0000 (14:42 +0200)
committerGitHub <noreply@github.com>
Mon, 6 Jul 2026 12:42:15 +0000 (12:42 +0000)
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
Lib/test/test_tkinter/test_misc.py

index 605c0e51c81766456608deed57776b73885c3e66..fa15c9683043cd609b10b5af0a36a4a0ccd45489 100644 (file)
@@ -1,4 +1,6 @@
 import functools
+import platform
+import sys
 import unittest
 import tkinter
 import enum
@@ -405,12 +407,27 @@ class WmTest(AbstractTkTest, unittest.TestCase):
 
     def test_wm_iconbitmap(self):
         t = tkinter.Toplevel(self.root)
+        patchlevel = get_tk_patchlevel(t)
+
+        if (
+            t._windowingsystem == 'aqua'
+            and sys.platform == 'darwin'
+            and platform.machine() == 'x86_64'
+            and platform.mac_ver()[0].startswith('26.')
+            and (
+                patchlevel[:3] <= (8, 6, 17)
+                or (9, 0) <= patchlevel[:3] <= (9, 0, 3)
+            )
+        ):
+            # https://github.com/python/cpython/issues/146531
+            # Tk bug 4a2070f0d3a99aa412bc582d386d575ca2f37323
+            self.skipTest('wm iconbitmap hangs on macOS 26 Intel')
+
         self.assertEqual(t.wm_iconbitmap(), '')
         t.wm_iconbitmap('hourglass')
         bug = False
         if t._windowingsystem == 'aqua':
             # Tk bug 13ac26b35dc55f7c37f70b39d59d7ef3e63017c8.
-            patchlevel = get_tk_patchlevel(t)
             if patchlevel < (8, 6, 17) or (9, 0) <= patchlevel < (9, 0, 2):
                 bug = True
         if not bug: