From 7c8372452b44512e92228984ff8127830587a9e8 Mon Sep 17 00:00:00 2001 From: Muminul Islam Date: Thu, 4 Dec 2025 19:00:04 -0800 Subject: [PATCH] tests: disable live-upgrade tests for MSHV These tests are expected to fail. See: #7542 Signed-off-by: Muminul Islam --- tests/integration.rs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tests/integration.rs b/tests/integration.rs index 942a02da7..613109997 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -11310,21 +11310,25 @@ mod live_migration { } #[test] + #[cfg_attr(feature = "mshv", ignore = "See #7542")] fn test_live_upgrade_basic() { _test_live_migration(true, false); } #[test] + #[cfg_attr(feature = "mshv", ignore = "See #7542")] fn test_live_upgrade_local() { _test_live_migration(true, true); } #[test] + #[cfg_attr(feature = "mshv", ignore = "See #7542")] fn test_live_upgrade_watchdog() { _test_live_migration_watchdog(true, false); } #[test] + #[cfg_attr(feature = "mshv", ignore = "See #7542")] fn test_live_upgrade_watchdog_local() { _test_live_migration_watchdog(true, true); } @@ -11351,31 +11355,37 @@ mod live_migration { } #[test] + #[cfg_attr(feature = "mshv", ignore = "See #7542")] fn test_live_upgrade_balloon() { _test_live_migration_balloon(true, false); } #[test] + #[cfg_attr(feature = "mshv", ignore = "See #7542")] fn test_live_upgrade_balloon_local() { _test_live_migration_balloon(true, true); } #[test] + #[cfg_attr(feature = "mshv", ignore = "See #7542")] fn test_live_migration_numa() { _test_live_migration_numa(false, false); } #[test] + #[cfg_attr(feature = "mshv", ignore = "See #7542")] fn test_live_migration_numa_local() { _test_live_migration_numa(false, true); } #[test] + #[cfg_attr(feature = "mshv", ignore = "See #7542")] fn test_live_upgrade_numa() { _test_live_migration_numa(true, false); } #[test] + #[cfg_attr(feature = "mshv", ignore = "See #7542")] fn test_live_upgrade_numa_local() { _test_live_migration_numa(true, true); }