tests: Disable live upgrade tests

Live upgrade is currently not guaranteed during this development cycle
and we will try to enable these tests after the next release.

Signed-off-by: Bo Chen <chen.bo@intel.com>
This commit is contained in:
Bo Chen 2022-04-20 11:21:10 -07:00 committed by Bo Chen
parent edca82c4bd
commit 82aa0e1222

View File

@ -7629,22 +7629,26 @@ mod live_migration {
} }
#[test] #[test]
#[ignore]
fn test_live_upgrade_basic() { fn test_live_upgrade_basic() {
_test_live_migration(true, false, false) _test_live_migration(true, false, false)
} }
#[test] #[test]
#[ignore]
fn test_live_upgrade_local() { fn test_live_upgrade_local() {
_test_live_migration(true, false, true) _test_live_migration(true, false, true)
} }
#[test] #[test]
#[ignore]
#[cfg(not(feature = "mshv"))] #[cfg(not(feature = "mshv"))]
fn test_live_upgrade_numa() { fn test_live_upgrade_numa() {
_test_live_migration(true, true, false) _test_live_migration(true, true, false)
} }
#[test] #[test]
#[ignore]
#[cfg(not(feature = "mshv"))] #[cfg(not(feature = "mshv"))]
fn test_live_upgrade_numa_local() { fn test_live_upgrade_numa_local() {
_test_live_migration(true, true, true) _test_live_migration(true, true, true)
@ -7865,12 +7869,14 @@ mod live_migration {
} }
#[test] #[test]
#[ignore]
#[cfg(not(feature = "mshv"))] #[cfg(not(feature = "mshv"))]
fn test_live_upgrade_ovs_dpdk() { fn test_live_upgrade_ovs_dpdk() {
_test_live_migration_ovs_dpdk(true, false); _test_live_migration_ovs_dpdk(true, false);
} }
#[test] #[test]
#[ignore]
#[cfg(not(feature = "mshv"))] #[cfg(not(feature = "mshv"))]
fn test_live_upgrade_ovs_dpdk_local() { fn test_live_upgrade_ovs_dpdk_local() {
_test_live_migration_ovs_dpdk(true, true); _test_live_migration_ovs_dpdk(true, true);