fortrangoingonforty/armfortas / ce94377

Browse files

Stabilize control-flow timeout

Authored by espadonne
SHA
ce9437717b79dafd682a6f3db73f4acc68265b21
Parents
62c9b4d
Tree
095536f

1 changed file

StatusFile+-
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 {
4343
         .stderr(Stdio::piped())
4444
         .spawn()
4545
         .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);
4747
     loop {
4848
         if let Some(_status) = child.try_wait().expect("failed to poll child status") {
4949
             return child