diff --git a/tests/integration.rs b/tests/integration.rs index d734ce8d9..b4bcfaa5c 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -9280,43 +9280,51 @@ mod live_migration { } #[test] + #[cfg(target_arch = "x86_64")] fn test_live_upgrade_basic() { _test_live_migration(true, false) } #[test] + #[cfg(target_arch = "x86_64")] fn test_live_upgrade_local() { _test_live_migration(true, true) } #[test] + #[cfg(target_arch = "x86_64")] #[cfg(not(feature = "mshv"))] fn test_live_upgrade_numa() { _test_live_migration_numa(true, false) } #[test] + #[cfg(target_arch = "x86_64")] #[cfg(not(feature = "mshv"))] fn test_live_upgrade_numa_local() { _test_live_migration_numa(true, true) } #[test] + #[cfg(target_arch = "x86_64")] fn test_live_upgrade_watchdog() { _test_live_migration_watchdog(true, false) } #[test] + #[cfg(target_arch = "x86_64")] fn test_live_upgrade_watchdog_local() { _test_live_migration_watchdog(true, true) } #[test] + #[cfg(target_arch = "x86_64")] fn test_live_upgrade_balloon() { _test_live_migration_balloon(true, false) } #[test] + #[cfg(target_arch = "x86_64")] fn test_live_upgrade_balloon_local() { _test_live_migration_balloon(true, true) }