From 9b7ca3be18fcf926b63c5620a4881ad9d9d3f325 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Wed, 29 Jul 2026 10:39:53 +0100 Subject: [PATCH] tests: Disable flaky test_live_migration_tcp_timeout_cancel() This test flakes out regularly and never succeeds on retry (as it is more likely to fail under the reduced load of the retry) See: #8651 Signed-off-by: Rob Bradford --- cloud-hypervisor/tests/integration.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/cloud-hypervisor/tests/integration.rs b/cloud-hypervisor/tests/integration.rs index a52a2f01a..0826fa7ef 100644 --- a/cloud-hypervisor/tests/integration.rs +++ b/cloud-hypervisor/tests/integration.rs @@ -7581,6 +7581,7 @@ mod common_parallel { #[test] #[cfg(not(feature = "mshv"))] + #[ignore = "See #8651"] fn test_live_migration_tcp_timeout_cancel() { _test_live_migration_tcp_timeout(TimeoutStrategy::Cancel); }