From ae68c2f31a4262eea6a432073aafe1137b178bd0 Mon Sep 17 00:00:00 2001 From: Sebastien Boeuf Date: Fri, 21 Jan 2022 10:04:25 +0100 Subject: [PATCH] tests: Increase timeout when booting with firmware As it might take more time for the VM to boot (especially under high load) when using the firmware, let's increase the timeout waiting for the VM to be reachable. Signed-off-by: Sebastien Boeuf --- tests/integration.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration.rs b/tests/integration.rs index 9b5ec405f..8dac77dab 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -3147,7 +3147,7 @@ mod parallel { .unwrap(); let r = std::panic::catch_unwind(|| { - guest.wait_vm_boot(None).unwrap(); + guest.wait_vm_boot(Some(120)).unwrap(); }); let _ = child.kill();