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 <rbradford@meta.com>
This commit is contained in:
Rob Bradford
2026-05-08 20:50:16 +01:00
parent 0f7e6a0d3a
commit c392274f09

View File

@@ -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 {