From 8ecce8876e8d390425861e07b5acf478823af2c4 Mon Sep 17 00:00:00 2001 From: Sebastien Boeuf Date: Fri, 2 Dec 2022 16:53:17 +0100 Subject: [PATCH] tests: Disable live upgrade testing Since the refactoring of the vm-migration crate broke the backward compatibility, we must disable the live upgrade tests until next release. Signed-off-by: Sebastien Boeuf --- tests/integration.rs | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/tests/integration.rs b/tests/integration.rs index b4bcfaa5c..11b6a99fe 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -9280,51 +9280,51 @@ mod live_migration { } #[test] - #[cfg(target_arch = "x86_64")] + #[ignore] fn test_live_upgrade_basic() { _test_live_migration(true, false) } #[test] - #[cfg(target_arch = "x86_64")] + #[ignore] fn test_live_upgrade_local() { _test_live_migration(true, true) } #[test] - #[cfg(target_arch = "x86_64")] + #[ignore] #[cfg(not(feature = "mshv"))] fn test_live_upgrade_numa() { _test_live_migration_numa(true, false) } #[test] - #[cfg(target_arch = "x86_64")] + #[ignore] #[cfg(not(feature = "mshv"))] fn test_live_upgrade_numa_local() { _test_live_migration_numa(true, true) } #[test] - #[cfg(target_arch = "x86_64")] + #[ignore] fn test_live_upgrade_watchdog() { _test_live_migration_watchdog(true, false) } #[test] - #[cfg(target_arch = "x86_64")] + #[ignore] fn test_live_upgrade_watchdog_local() { _test_live_migration_watchdog(true, true) } #[test] - #[cfg(target_arch = "x86_64")] + #[ignore] fn test_live_upgrade_balloon() { _test_live_migration_balloon(true, false) } #[test] - #[cfg(target_arch = "x86_64")] + #[ignore] fn test_live_upgrade_balloon_local() { _test_live_migration_balloon(true, true) } @@ -9351,6 +9351,7 @@ mod live_migration { } #[test] + #[ignore] #[cfg(target_arch = "x86_64")] #[cfg(not(feature = "mshv"))] fn test_live_upgrade_ovs_dpdk() { @@ -9358,6 +9359,7 @@ mod live_migration { } #[test] + #[ignore] #[cfg(target_arch = "x86_64")] #[cfg(not(feature = "mshv"))] fn test_live_upgrade_ovs_dpdk_local() {