diff options
Diffstat (limited to 'Lib/test/test_thread_local_bytecode.py')
-rw-r--r-- | Lib/test/test_thread_local_bytecode.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_thread_local_bytecode.py b/Lib/test/test_thread_local_bytecode.py index 7a8809c5ae7..ea52fb888ce 100644 --- a/Lib/test/test_thread_local_bytecode.py +++ b/Lib/test/test_thread_local_bytecode.py @@ -109,6 +109,7 @@ class TLBCTests(unittest.TestCase): """) assert_python_ok("-X", "tlbc=1", "-c", code) + @support.skip_if_sanitizer("gh-129752: data race on adaptive counter", thread=True) def test_no_copies_if_tlbc_disabled(self): code = textwrap.dedent(""" import queue |