Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Lib/test/test_concurrent_futures/test_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ def _test(self, test_class):
def test_spawn(self):
self._test(ProcessPoolSpawnFailingInitializerTest)

@support.skip_if_sanitizer("TSAN doesn't support threads after fork", thread=True)
def test_forkserver(self):
self._test(ProcessPoolForkserverFailingInitializerTest)

Expand Down
3 changes: 3 additions & 0 deletions Lib/test/test_multiprocessing_fork/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,8 @@
if sys.platform == 'darwin':
raise unittest.SkipTest("test may crash on macOS (bpo-33725)")

if support.check_sanitizer(thread=True):
raise unittest.SkipTest("TSAN doesn't support threads after fork")

def load_tests(*args):
return support.load_package_tests(os.path.dirname(__file__), *args)