From e0e10b597118ed4f1ba212ef2b41c24d5dad5254 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Mon, 11 May 2026 15:54:53 +0100 Subject: [PATCH] tests: Disable tests on ARM64 that don't work with stock kernel An edk2 boot is needed for ACPI support but the stock ARM64 kernel does not support ACPI memory hotplug or virtio-pmem. For now disable those tests but track them in #8187. Signed-off-by: Rob Bradford --- cloud-hypervisor/tests/integration.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cloud-hypervisor/tests/integration.rs b/cloud-hypervisor/tests/integration.rs index 4a9b17a1c..282908411 100644 --- a/cloud-hypervisor/tests/integration.rs +++ b/cloud-hypervisor/tests/integration.rs @@ -2767,6 +2767,7 @@ mod common_parallel { } #[test] + #[cfg_attr(target_arch = "aarch64", ignore = "See #8187")] fn test_memory_hotplug() { let disk_config = UbuntuDiskConfig::new(JAMMY_IMAGE_NAME.to_string()); let guest = Guest::new(Box::new(disk_config)); @@ -4924,11 +4925,13 @@ mod common_parallel { } #[test] + #[cfg_attr(target_arch = "aarch64", ignore = "See #8187")] fn test_pmem_hotplug() { _test_pmem_hotplug(None); } #[test] + #[cfg_attr(target_arch = "aarch64", ignore = "See #8187")] fn test_pmem_multi_segment_hotplug() { _test_pmem_hotplug(Some(15)); } @@ -11162,6 +11165,7 @@ mod aarch64_acpi { } #[test] + #[cfg_attr(target_arch = "aarch64", ignore = "See #8187")] fn test_virtio_iommu() { _test_virtio_iommu(true); }