From 259b8aa1c86ee593cab2c08c19c7bd141cc529e2 Mon Sep 17 00:00:00 2001 From: Bo Chen Date: Wed, 13 Mar 2024 18:56:30 -0700 Subject: [PATCH] tests: Run "test_live_upgrade_numa" on aarch64 only Our Azure VM for x86_64 workers are now much smaller, and does not have enough RAM to run the "test_live_upgrade_numa" test. Instead, this test will still be tested on the aarch64 worker, and the "local" upgrade variation of the same test will also be tested on all workers. So we should be good from test coverage point of view. Signed-off-by: Bo Chen --- tests/integration.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/integration.rs b/tests/integration.rs index 4e5f5269b..800d7ca1e 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -9606,6 +9606,7 @@ mod live_migration { } #[test] + #[cfg(target_arch = "aarch64")] // see: #6272 #[cfg(not(feature = "mshv"))] fn test_live_upgrade_numa() { _test_live_migration_numa(true, false)