From 87fb9cedc9d65a8a166d91f06a4e4bb69c8bc318 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Wed, 12 Oct 2022 08:40:36 +0100 Subject: [PATCH] tests: Temporarily disable test_live_{migration,upgrade}_watchdog{_local} This test has been identified as flaky and is creating CI churn. See: #4749 Signed-off-by: Rob Bradford --- tests/integration.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/integration.rs b/tests/integration.rs index 96b9189ea..94c1dbc75 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -9305,11 +9305,13 @@ mod live_migration { } #[test] + #[ignore = "See #4749"] fn test_live_migration_watchdog() { _test_live_migration_watchdog(false, false) } #[test] + #[ignore = "See #4749"] fn test_live_migration_watchdog_local() { _test_live_migration_watchdog(false, true) } @@ -9347,11 +9349,13 @@ mod live_migration { } #[test] + #[ignore = "See #4749"] fn test_live_upgrade_watchdog() { _test_live_migration_watchdog(true, false) } #[test] + #[ignore = "See #4749"] fn test_live_upgrade_watchdog_local() { _test_live_migration_watchdog(true, true) }