From a8839c4a4ee7234ff098e9ec467fb5ccb7589dcf Mon Sep 17 00:00:00 2001 From: Michael Zhao Date: Thu, 1 Dec 2022 21:45:01 +0800 Subject: [PATCH] tests: Disable live_upgrade test on AArch64 The `live_upgrade` test was broken when the Gic snapshot moved from `Vm` to `DeviceManager`. Signed-off-by: Michael Zhao --- tests/integration.rs | 8 ++++++++ 1 file changed, 8 insertions(+) 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) }