From af764235a093ac237ced21be74807a36829095d3 Mon Sep 17 00:00:00 2001 From: Muminul Islam Date: Sun, 22 Feb 2026 22:40:48 -0800 Subject: [PATCH] tests: nested not supported for CVM on MSHV Nested on MSHV confident VM not supported yet. Signed-off-by: Muminul Islam --- cloud-hypervisor/tests/integration.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/cloud-hypervisor/tests/integration.rs b/cloud-hypervisor/tests/integration.rs index 804784507..c07ae25fa 100644 --- a/cloud-hypervisor/tests/integration.rs +++ b/cloud-hypervisor/tests/integration.rs @@ -14441,6 +14441,7 @@ mod common_cvm { let mut guest = Guest::new(Box::new(disk_config)); guest.vm_type = GuestVmType::Confidential; guest.boot_timeout = DEFAULT_CVM_TCP_LISTENER_TIMEOUT; + guest.nested = false; _test_simple_launch(&guest) } }