Skip to content

Commit f60ec4a

Browse files
committed
pythongh-129824: Temporarily skip test under TSAN
1 parent 0a005f0 commit f60ec4a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Lib/test/test__interpchannels.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import time
77
import unittest
88

9-
from test.support import import_helper
9+
from test.support import import_helper, skip_if_sanitizer
1010

1111
_channels = import_helper.import_module('_interpchannels')
1212
from test.support.interpreters import _crossinterp
@@ -365,6 +365,7 @@ def test_shareable(self):
365365
#self.assertIsNot(got, obj)
366366

367367

368+
@skip_if_sanitizer('gh-129824: race on _waiting_release', thread=True)
368369
class ChannelTests(TestBase):
369370

370371
def test_create_cid(self):

Lib/test/test_capi/test_misc.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1411,6 +1411,7 @@ def run_tasks():
14111411
self.assertNotIn(task.requester_tid, runner_tids)
14121412

14131413
@requires_subinterpreters
1414+
@support.skip_if_sanitizer("gh-129824: race on assign_version_tag", thread=True)
14141415
def test_isolated_subinterpreter(self):
14151416
# We exercise the most important permutations.
14161417

0 commit comments

Comments
 (0)