]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-130605: Temporarily disable test_concurrent_futures in TSAN CI job (gh-130606)
authorSam Gross <colesbury@gmail.com>
Wed, 26 Feb 2025 21:36:53 +0000 (16:36 -0500)
committerGitHub <noreply@github.com>
Wed, 26 Feb 2025 21:36:53 +0000 (21:36 +0000)
There are a number of data races in the default build without
suppressions that are exposed by this test. Disable the test for now
under TSAN until we have suppressions or fix the data races.

Lib/test/libregrtest/tsan.py

index 37d2983837fb7880a574f5c69290145079d547ad..77dde5ecb076e28e44b8d2abd0b28fa79151a635 100644 (file)
@@ -6,7 +6,7 @@ TSAN_TESTS = [
     'test_capi.test_mem',
     'test_capi.test_pyatomic',
     'test_code',
-    'test_concurrent_futures',
+    # 'test_concurrent_futures',  # gh-130605: too many data races
     'test_enum',
     'test_functools',
     'test_httpservers',