From 21a21ce51aac7c1f15eba88abc87e1e141b45449 Mon Sep 17 00:00:00 2001 From: Sebastien Boeuf Date: Mon, 3 Jan 2022 10:54:25 +0100 Subject: [PATCH] tests: Disable test_virtio_block_topology for aarch64 The test test_virtio_block_topology is flaky on aarch64, let's disable it until we find the right way to fix it. Signed-off-by: Sebastien Boeuf --- tests/integration.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/integration.rs b/tests/integration.rs index 75f6b9d1e..bdad44b24 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -4997,6 +4997,7 @@ mod tests { } #[test] + #[cfg(target_arch = "x86_64")] fn test_virtio_block_topology() { let focal = UbuntuDiskConfig::new(FOCAL_IMAGE_NAME.to_string()); let guest = Guest::new(Box::new(focal));