From e32c9525c06e32361d9ffd8c3d252b001dd1e20a Mon Sep 17 00:00:00 2001 From: Muminul Islam Date: Wed, 29 Mar 2023 16:44:08 -0700 Subject: [PATCH] tests: disable virtio_balloon_free_page_reporting on mshv balloon_free_page_reporting test case should not work as expected. The reason is that MSHV pins all the pages during the memory map for the guest. Those pages can not be altered without unpinning the pages. MSHV does not support modifying the pages during the guest life cycle. This test case can be enabled once we add VA backed VM support. Signed-off-by: Muminul Islam --- tests/integration.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/integration.rs b/tests/integration.rs index 1028ae9b9..4dfc81eca 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -5199,6 +5199,7 @@ mod common_parallel { } #[test] + #[cfg(not(feature = "mshv"))] fn test_virtio_balloon_free_page_reporting() { let focal = UbuntuDiskConfig::new(FOCAL_IMAGE_NAME.to_string()); let guest = Guest::new(Box::new(focal));