From 932e1a636a0029f673dc05ce3a54f3d2adef6d42 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Tue, 4 Nov 2025 17:40:45 +0000 Subject: [PATCH] tests: Disable integration tests that use virtio-mem on MSHV These tests are now failing See: #7456 Signed-off-by: Rob Bradford --- tests/integration.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/integration.rs b/tests/integration.rs index 15919641b..53a464e8e 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -2867,6 +2867,7 @@ mod common_parallel { } #[test] + #[cfg(not(feature = "mshv"))] // See #7456 fn test_user_defined_memory_regions() { let disk_config = UbuntuDiskConfig::new(JAMMY_IMAGE_NAME.to_string()); let guest = Guest::new(Box::new(disk_config)); @@ -2934,6 +2935,7 @@ mod common_parallel { } #[test] + #[cfg(not(feature = "mshv"))] // See #7456 fn test_guest_numa_nodes() { _test_guest_numa_nodes(false); } @@ -5136,6 +5138,7 @@ mod common_parallel { } #[test] + #[cfg(not(feature = "mshv"))] // See #7456 fn test_virtio_mem() { let disk_config = UbuntuDiskConfig::new(JAMMY_IMAGE_NAME.to_string()); let guest = Guest::new(Box::new(disk_config)); @@ -5840,6 +5843,7 @@ mod common_parallel { } #[test] + #[cfg(not(feature = "mshv"))] // See #7456 fn test_virtio_balloon_free_page_reporting() { let disk_config = UbuntuDiskConfig::new(JAMMY_IMAGE_NAME.to_string()); let guest = Guest::new(Box::new(disk_config));