Skip to content
Merged
Changes from 2 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
5 changes: 4 additions & 1 deletion Lib/test/_test_multiprocessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -5730,7 +5730,10 @@ def check_resource_tracker_death(self, signum, should_die):
pid = _resource_tracker._pid

os.kill(pid, signum)
time.sleep(1.0) # give it time to die
if sys.platform.startswith("netbsd") and should_die:
time.sleep(60.0 * 3) # give it more time to die on netbsd
else:
time.sleep(1.0) # give it more time to die

ctx = multiprocessing.get_context("spawn")
with warnings.catch_warnings(record=True) as all_warn:
Expand Down
Loading