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:
parent
f795081bf9
commit
7c8372452b
1 changed files with 10 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue