(child: &mut Child)
| 76 | } |
| 77 | |
| 78 | async fn stop_child(child: &mut Child) { |
| 79 | let _ = child.kill().await; |
| 80 | let _ = child.wait().await; |
| 81 | } |
| 82 | |
| 83 | async fn wait_for_sandbox(name: &str, timeout_secs: u64) -> Result<(), String> { |
| 84 | let deadline = tokio::time::Instant::now() + Duration::from_secs(timeout_secs); |
no test coverage detected