From c392274f0964f61e32bf3a02fae67cf4f902caf0 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Fri, 8 May 2026 20:50:16 +0100 Subject: [PATCH] tests: Streamline watchdog tests This is a niche feature and we were overly testing it. Let's just switch to two tests. One for live migration and one for plain watchdog. This will reduce the CI time. As we are now running these tests sequentially we can also reduce some the delays in the tests. Signed-off-by: Rob Bradford --- cloud-hypervisor/tests/integration.rs | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/cloud-hypervisor/tests/integration.rs b/cloud-hypervisor/tests/integration.rs index b4112765e..4a9b17a1c 100644 --- a/cloud-hypervisor/tests/integration.rs +++ b/cloud-hypervisor/tests/integration.rs @@ -9504,24 +9504,6 @@ mod common_sequential { fn test_live_migration_watchdog() { _test_live_migration_watchdog(false, false); } - - #[test] - #[cfg(not(feature = "mshv"))] - fn test_live_migration_watchdog_local() { - _test_live_migration_watchdog(false, true); - } - - #[test] - #[cfg(not(feature = "mshv"))] - fn test_live_upgrade_watchdog() { - _test_live_migration_watchdog(true, false); - } - - #[test] - #[cfg(not(feature = "mshv"))] - fn test_live_upgrade_watchdog_local() { - _test_live_migration_watchdog(true, true); - } } mod windows {