performance-metrics: Apply vm_type override in run()

Apply the vm_type override from PerformanceTestOverrides to the
effective_control used during test execution, alongside the
existing test_timeout override.

Signed-off-by: Muminul Islam <muislam@microsoft.com>
This commit is contained in:
Muminul Islam
2026-04-01 18:36:24 -07:00
committed by Rob Bradford
parent 56a986145e
commit ab7749a5ce

View File

@@ -294,6 +294,7 @@ impl PerformanceTest {
if let Some(test_timeout) = overrides.test_timeout {
control.test_timeout = test_timeout;
}
control.vm_type = overrides.vm_type;
control
};