From b14986c91464b06e9016678637e41d0e0192bbe8 Mon Sep 17 00:00:00 2001 From: Kumar Aditya Date: Sat, 21 Jun 2025 22:03:17 +0530 Subject: [PATCH] gh-130605: reenable `test_concurrent_futures` tests under TSAN (#135790) --- Lib/test/libregrtest/tsan.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/libregrtest/tsan.py b/Lib/test/libregrtest/tsan.py index d984a735bdf9..3545c5f999ff 100644 --- a/Lib/test/libregrtest/tsan.py +++ b/Lib/test/libregrtest/tsan.py @@ -8,7 +8,7 @@ TSAN_TESTS = [ 'test_capi.test_pyatomic', 'test_code', 'test_ctypes', - # 'test_concurrent_futures', # gh-130605: too many data races + 'test_concurrent_futures', 'test_enum', 'test_functools', 'test_httpservers', -- 2.47.3