()
| 5665 | time.sleep(1) |
| 5666 | |
| 5667 | def only_main_pid_exited(): |
| 5668 | live_pids = get_live_pids() |
| 5669 | if len(live_pids) == len(process_ids_to_check) - 1: |
| 5670 | return True |
| 5671 | |
| 5672 | return False |
| 5673 | |
| 5674 | wait_for_condition(only_main_pid_exited) |
| 5675 |
nothing calls this directly
no test coverage detected