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 <michael.zhao@arm.com>
This commit is contained in:
Michael Zhao 2022-12-01 21:45:01 +08:00 committed by Sebastien Boeuf
parent b173f6f654
commit a8839c4a4e

View File

@ -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)
}