tests: add CVM test for serial_off

Add a CVM integration test for serial_off that validates
the same functionality using a confidential guest with
the basic_cvm_guest macro.

Signed-off-by: Muminul Islam <muislam@microsoft.com>
This commit is contained in:
Muminul Islam
2026-03-21 18:51:52 -07:00
committed by Rob Bradford
parent 108391f720
commit 36871b3547

View File

@@ -224,4 +224,10 @@ mod common_cvm {
let guest = basic_cvm_guest!(JAMMY_IMAGE_NAME);
_test_multiple_network_interfaces(&guest);
}
#[test]
fn test_serial_off() {
let guest = basic_cvm_guest!(JAMMY_IMAGE_NAME);
_test_serial_off(&guest);
}
}