mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2026-08-05 02:19:16 +00:00
tests: disable live-upgrade tests for MSHV
These tests are expected to fail. See: #7542 Signed-off-by: Muminul Islam <muislam@microsoft.com>
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user