From bf4af14e7369e6b6cb823adc4854db2fe2774971 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Thu, 18 May 2023 13:07:26 +0100 Subject: [PATCH] tests: Temporarily disable test_macvtap{_hotplug} on aarch64 See: #5443 Signed-off-by: Rob Bradford --- tests/integration.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/integration.rs b/tests/integration.rs index 8e83686f1..04ba56384 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -6277,11 +6277,13 @@ mod common_parallel { } #[test] + #[cfg_attr(target_arch = "aarch64", ignore = "See #5443")] fn test_macvtap() { _test_macvtap(false, "guestmacvtap0", "hostmacvtap0") } #[test] + #[cfg_attr(target_arch = "aarch64", ignore = "See #5443")] fn test_macvtap_hotplug() { _test_macvtap(true, "guestmacvtap1", "hostmacvtap1") }