tests: Disable integration tests that use virtio-mem on MSHV

These tests are now failing

See: #7456

Signed-off-by: Rob Bradford <rbradford@rivosinc.com>
This commit is contained in:
Rob Bradford 2025-11-04 17:40:45 +00:00
parent d59dfdf8b6
commit 932e1a636a

View file

@ -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));