From 87a4f4ae324b22c99ee74930dc012c718cc445f0 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Fri, 23 Apr 2021 12:08:37 +0200 Subject: [PATCH] tests: Disable test_windows_* for mshv It appears that mshv is not yet there to succeed with these tests. It is suggested to ignore them and enable later one by one as the functionality gets fixed. Signed-off-by: Anatol Belski --- tests/integration.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/integration.rs b/tests/integration.rs index cde1b1e41..013ac174e 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -5686,6 +5686,7 @@ mod tests { } #[test] + #[cfg(not(feature = "mshv"))] fn test_windows_guest_snapshot_restore() { let mut windows = WindowsDiskConfig::new(WINDOWS_IMAGE_NAME.to_string()); let guest = Guest::new(&mut windows); @@ -5781,6 +5782,7 @@ mod tests { } #[test] + #[cfg(not(feature = "mshv"))] fn test_windows_guest_cpu_hotplug() { let mut windows = WindowsDiskConfig::new(WINDOWS_IMAGE_NAME.to_string()); let guest = Guest::new(&mut windows); @@ -5871,6 +5873,7 @@ mod tests { } #[test] + #[cfg(not(feature = "mshv"))] fn test_windows_guest_ram_hotplug() { let mut windows = WindowsDiskConfig::new(WINDOWS_IMAGE_NAME.to_string()); let guest = Guest::new(&mut windows); @@ -5961,6 +5964,7 @@ mod tests { } #[test] + #[cfg(not(feature = "mshv"))] fn test_windows_guest_netdev_hotplug() { let mut windows = WindowsDiskConfig::new(WINDOWS_IMAGE_NAME.to_string()); let guest = Guest::new(&mut windows);