performance-metrics: Add vm_type to PerformanceTestOverrides

Add an optional vm_type field to PerformanceTestOverrides to
allow overriding the VM type at runtime. Include vm_type in
the Display output for override logging.

Signed-off-by: Muminul Islam <muislam@microsoft.com>
This commit is contained in:
Muminul Islam
2026-04-01 18:35:27 -07:00
committed by Rob Bradford
parent 55e2700fbc
commit 56a986145e
2 changed files with 6 additions and 1 deletions

View File

@@ -2487,8 +2487,9 @@ pub fn extract_bar_address(output: &str, device_desc: &str, bar_index: usize) ->
None
}
#[derive(PartialEq, Clone, Copy)]
#[derive(PartialEq, Clone, Copy, Default)]
pub enum GuestVmType {
#[default]
Regular,
Confidential,
}