From 7d8986aad04cfeca04cd5f63d335d07736d1fef3 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Mon, 4 May 2026 15:11:00 +0100 Subject: [PATCH] tests: Allow more time for firmware & O_DIRECT tests Booting the VM on these tests takes longer so allow longer before timing out the boot. Signed-off-by: Rob Bradford --- cloud-hypervisor/tests/integration.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cloud-hypervisor/tests/integration.rs b/cloud-hypervisor/tests/integration.rs index 429a00d8e..861044508 100644 --- a/cloud-hypervisor/tests/integration.rs +++ b/cloud-hypervisor/tests/integration.rs @@ -1393,7 +1393,7 @@ mod common_parallel { .unwrap(); let r = std::panic::catch_unwind(|| { - guest.wait_vm_boot().unwrap(); + guest.wait_vm_boot_custom_timeout(180).unwrap(); }); kill_child(&mut child); @@ -1753,7 +1753,7 @@ mod common_parallel { .unwrap(); let r = std::panic::catch_unwind(|| { - guest.wait_vm_boot().unwrap(); + guest.wait_vm_boot_custom_timeout(180).unwrap(); }); kill_child(&mut child);