From dd0a85314cf945b8c83350b4def1ab0390d86cf5 Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Wed, 21 Sep 2022 10:08:10 -0700 Subject: [PATCH] interrupt_caught_and_kills_children: more time to get started --- tests/cli.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cli.rs b/tests/cli.rs index 9e2c4d2f..8b2fd56a 100644 --- a/tests/cli.rs +++ b/tests/cli.rs @@ -1017,7 +1017,7 @@ fn interrupt_caught_and_kills_children() { println!("Running: {args:?}"); let mut child = Popen::create(&args, config).expect("spawn child"); - sleep(Duration::from_secs(1)); // Let it get started + sleep(Duration::from_secs(2)); // Let it get started assert!(child.poll().is_none(), "child exited early"); println!("Send SIGINT");