Stabilize control-flow timeout
- SHA
ce9437717b79dafd682a6f3db73f4acc68265b21- Parents
-
62c9b4d - Tree
095536f
ce94377
ce9437717b79dafd682a6f3db73f4acc68265b2162c9b4d
095536f| Status | File | + | - |
|---|---|---|---|
| M |
tests/control_flow_runtime.rs
|
1 | 1 |
tests/control_flow_runtime.rsmodified@@ -43,7 +43,7 @@ fn run_with_timeout(path: &std::path::Path) -> Output { | ||
| 43 | 43 | .stderr(Stdio::piped()) |
| 44 | 44 | .spawn() |
| 45 | 45 | .expect("failed to spawn control-flow test binary"); |
| 46 | - let deadline = Instant::now() + Duration::from_secs(1); | |
| 46 | + let deadline = Instant::now() + Duration::from_secs(3); | |
| 47 | 47 | loop { |
| 48 | 48 | if let Some(_status) = child.try_wait().expect("failed to poll child status") { |
| 49 | 49 | return child |