()
| 5637 | if check_subprocesses == "kill_subprocesses": |
| 5638 | |
| 5639 | def all_pids_exited(): |
| 5640 | live_pids = get_live_pids() |
| 5641 | if live_pids: |
| 5642 | return False |
| 5643 | |
| 5644 | return True |
| 5645 | |
| 5646 | wait_for_condition(all_pids_exited) |
| 5647 |
nothing calls this directly
no test coverage detected