From f6a1d821d7a070fc00c4f6b1b6ded2a567dbf0dc Mon Sep 17 00:00:00 2001 From: Muminul Islam Date: Thu, 12 Mar 2026 18:52:34 -0700 Subject: [PATCH] tests: extend timeout for CVM tests Confidential VMs require additional time during boot to load the IGVM image, complete page measurements, and perform Reverse Map Table (RMP) validation. In addition, PSP latency can further delay the boot process. Extend the test timeout to accommodate these additional initialization steps. Signed-off-by: Muminul Islam --- test_infra/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_infra/src/lib.rs b/test_infra/src/lib.rs index fba95ed97..22a1ea99d 100644 --- a/test_infra/src/lib.rs +++ b/test_infra/src/lib.rs @@ -76,7 +76,7 @@ pub struct GuestNetworkConfig { pub const DEFAULT_TCP_LISTENER_MESSAGE: &str = "booted"; pub const DEFAULT_TCP_LISTENER_PORT: u16 = 8000; pub const DEFAULT_TCP_LISTENER_TIMEOUT: u32 = 120; -pub const DEFAULT_CVM_TCP_LISTENER_TIMEOUT: u32 = 120; +pub const DEFAULT_CVM_TCP_LISTENER_TIMEOUT: u32 = 140; #[derive(Error, Debug)] pub enum WaitForBootError {