tests: add CVM test for split_irqchip

Add a CVM variant of the split IRQ chip test in
integration_cvm.rs. This test creates a confidential
guest and invokes the shared _test_split_irqchip()
wrapper to validate split IRQ chip behavior under CVM.

Signed-off-by: Muminul Islam <muislam@microsoft.com>
This commit is contained in:
Muminul Islam
2026-03-21 00:56:42 -07:00
committed by Rob Bradford
parent 56696ed901
commit b65a3a58f3

View File

@@ -200,4 +200,10 @@ mod common_cvm {
let guest = basic_cvm_guest!(JAMMY_IMAGE_NAME);
_test_virtio_block_dynamic_vhdx_expand(&guest);
}
#[test]
fn test_split_irqchip() {
let guest = basic_cvm_guest!(JAMMY_IMAGE_NAME);
_test_split_irqchip(&guest);
}
}