tests: add CVM test for dmi_oem_strings

Add a CVM variant of the DMI OEM strings test in
integration_cvm.rs. This test creates a confidential
guest using the basic_cvm_guest! macro and invokes the
shared _test_dmi_oem_strings() wrapper to validate DMI
OEM strings behavior under CVM.

Signed-off-by: Muminul Islam <muislam@microsoft.com>
This commit is contained in:
Muminul Islam
2026-03-21 17:56:38 -07:00
committed by Rob Bradford
parent c3976ccbda
commit b7a7366ef9

View File

@@ -212,4 +212,10 @@ mod common_cvm {
let guest = basic_cvm_guest!(JAMMY_IMAGE_NAME);
_test_dmi_uuid(&guest);
}
#[test]
fn test_dmi_oem_strings() {
let guest = basic_cvm_guest!(JAMMY_IMAGE_NAME);
_test_dmi_oem_strings(&guest);
}
}