We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b451fc commit 2e19981Copy full SHA for 2e19981
1 file changed
Lib/test/test_threading.py
@@ -1135,6 +1135,8 @@ def worker():
1135
"""
1136
self._run_and_join(script)
1137
1138
+ # TODO: RUSTPYTHON
1139
+ @unittest.expectedFailure
1140
@unittest.skipIf(sys.platform in platforms_to_skip, "due to known OS bug")
1141
def test_4_daemon_threads(self):
1142
# Check that a daemon thread cannot crash the interpreter on shutdown
@@ -1202,6 +1204,8 @@ def do_fork_and_wait():
1202
1204
t.join()
1203
1205
1206
@support.requires_fork()
1207
1208
1209
def test_clear_threads_states_after_fork(self):
1210
# Issue #17094: check that threads states are cleared after fork()
1211
0 commit comments