diff --git a/Lib/test/test_tracemalloc.py b/Lib/test/test_tracemalloc.py index 9d3ff8a620b6f2..b7055ca8806132 100644 --- a/Lib/test/test_tracemalloc.py +++ b/Lib/test/test_tracemalloc.py @@ -1115,7 +1115,9 @@ def test_stop_untrack(self): @threading_helper.requires_working_threading() # gh-128679: Test crash on a debug build (especially on FreeBSD). @unittest.skipIf(support.Py_DEBUG, 'need release build') - @support.skip_if_sanitizer('gh-131566: race when setting allocator', thread=True) + @support.skip_if_sanitizer( + 'gh-131566, gh-139116: race when setting allocator/tracer', + thread=True, address=True) def test_tracemalloc_track_race(self): # gh-128679: Test fix for tracemalloc.stop() race condition _testcapi.tracemalloc_track_race()