From 4d80be3a0425b8ea4eaf22d7b174d15e97934ede Mon Sep 17 00:00:00 2001 From: Bo Chen Date: Thu, 16 Nov 2023 09:41:55 -0800 Subject: [PATCH] tests: Enable live-upgrade tests based on release v36.0 These live-upgrade tests were disabled due to CLI changes (#5791). Signed-off-by: Bo Chen --- scripts/run_integration_tests_aarch64.sh | 2 +- scripts/run_integration_tests_live_migration.sh | 2 +- tests/integration.rs | 10 ---------- 3 files changed, 2 insertions(+), 12 deletions(-) diff --git a/scripts/run_integration_tests_aarch64.sh b/scripts/run_integration_tests_aarch64.sh index 3182e8a63..bc2fff27d 100755 --- a/scripts/run_integration_tests_aarch64.sh +++ b/scripts/run_integration_tests_aarch64.sh @@ -159,7 +159,7 @@ update_workloads() { popd # Download Cloud Hypervisor binary from its last stable release - LAST_RELEASE_VERSION="v34.0" + LAST_RELEASE_VERSION="v36.0" CH_RELEASE_URL="https://github.com/cloud-hypervisor/cloud-hypervisor/releases/download/$LAST_RELEASE_VERSION/cloud-hypervisor-static-aarch64" CH_RELEASE_NAME="cloud-hypervisor-static-aarch64" pushd $WORKLOADS_DIR diff --git a/scripts/run_integration_tests_live_migration.sh b/scripts/run_integration_tests_live_migration.sh index df177e2c3..b6f004cf1 100755 --- a/scripts/run_integration_tests_live_migration.sh +++ b/scripts/run_integration_tests_live_migration.sh @@ -44,7 +44,7 @@ fi popd # Download Cloud Hypervisor binary from its last stable release -LAST_RELEASE_VERSION="v34.0" +LAST_RELEASE_VERSION="v36.0" CH_RELEASE_URL="https://github.com/cloud-hypervisor/cloud-hypervisor/releases/download/$LAST_RELEASE_VERSION/cloud-hypervisor-static" CH_RELEASE_NAME="cloud-hypervisor-static" pushd $WORKLOADS_DIR diff --git a/tests/integration.rs b/tests/integration.rs index 46b9c380c..a7cae2604 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -9537,51 +9537,43 @@ mod live_migration { } #[test] - #[ignore = "See #5791"] fn test_live_upgrade_basic() { _test_live_migration(true, false) } #[test] - #[ignore = "See #5791"] fn test_live_upgrade_local() { _test_live_migration(true, true) } #[test] #[cfg(not(feature = "mshv"))] - #[ignore = "See #5791"] fn test_live_upgrade_numa() { _test_live_migration_numa(true, false) } #[test] #[cfg(not(feature = "mshv"))] - #[ignore = "See #5791"] fn test_live_upgrade_numa_local() { _test_live_migration_numa(true, true) } #[test] - #[ignore = "See #5791"] fn test_live_upgrade_watchdog() { _test_live_migration_watchdog(true, false) } #[test] - #[ignore = "See #5791"] fn test_live_upgrade_watchdog_local() { _test_live_migration_watchdog(true, true) } #[test] - #[ignore = "See #5791"] fn test_live_upgrade_balloon() { _test_live_migration_balloon(true, false) } #[test] - #[ignore = "See #5791"] fn test_live_upgrade_balloon_local() { _test_live_migration_balloon(true, true) } @@ -9610,7 +9602,6 @@ mod live_migration { #[test] #[cfg(target_arch = "x86_64")] #[cfg(not(feature = "mshv"))] - #[ignore = "See #5791"] fn test_live_upgrade_ovs_dpdk() { _test_live_migration_ovs_dpdk(true, false); } @@ -9618,7 +9609,6 @@ mod live_migration { #[test] #[cfg(target_arch = "x86_64")] #[cfg(not(feature = "mshv"))] - #[ignore = "See #5791"] fn test_live_upgrade_ovs_dpdk_local() { _test_live_migration_ovs_dpdk(true, true); }