diff options
author | Victor Stinner <vstinner@python.org> | 2023-08-22 13:52:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-22 13:52:32 (GMT) |
commit | a541e01537cc07b326cc37cc29412b816bc2b4fc (patch) | |
tree | 8eb092061d63d1ebc4b4360c36758ad5a8154be0 /Lib/test/test_tkinter | |
parent | 893215a4e7f59eabb8ccdf188c4b9b1de5bd8966 (diff) | |
download | cpython-a541e01537cc07b326cc37cc29412b816bc2b4fc.zip cpython-a541e01537cc07b326cc37cc29412b816bc2b4fc.tar.gz cpython-a541e01537cc07b326cc37cc29412b816bc2b4fc.tar.bz2 |
gh-90791: Enable test___all__ on ASAN build (#108286)
* Only skip modules and tests related to X11 on ASAN builds: run
other tests with ASAN.
* Use print(flush=True) to see output earlier when it's redirected to
a pipe.
* Update issue reference: replace bpo-46633 with gh-90791.
Diffstat (limited to 'Lib/test/test_tkinter')
-rw-r--r-- | Lib/test/test_tkinter/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_tkinter/__init__.py b/Lib/test/test_tkinter/__init__.py index b1181bc..aa196c1 100644 --- a/Lib/test/test_tkinter/__init__.py +++ b/Lib/test/test_tkinter/__init__.py @@ -10,6 +10,7 @@ from test.support import ( if check_sanitizer(address=True, memory=True): + # See gh-90791 for details raise unittest.SkipTest("Tests involving libX11 can SEGFAULT on ASAN/MSAN builds") # Skip test if _tkinter wasn't built. |