From dccdb223b718d512b78a5cd6b015645d27bd31cb Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Mon, 22 Dec 2025 20:41:20 +0000 Subject: [PATCH] tests: Re-enable CPU topology tests on MSHV Fixes: #7433 Signed-off-by: Anatol Belski --- cloud-hypervisor/tests/integration.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/cloud-hypervisor/tests/integration.rs b/cloud-hypervisor/tests/integration.rs index 216443795..9f459267a 100644 --- a/cloud-hypervisor/tests/integration.rs +++ b/cloud-hypervisor/tests/integration.rs @@ -2667,19 +2667,16 @@ mod common_parallel { } #[test] - #[cfg(not(feature = "mshv"))] // See issue #7433 fn test_cpu_topology_421() { test_cpu_topology(4, 2, 1, false); } #[test] - #[cfg(not(feature = "mshv"))] // See issue #7433 fn test_cpu_topology_142() { test_cpu_topology(1, 4, 2, false); } #[test] - #[cfg(not(feature = "mshv"))] // See issue #7433 fn test_cpu_topology_262() { test_cpu_topology(2, 6, 2, false); }