From 5d5364876208070c88b0e4fcbe29f303f7188fee Mon Sep 17 00:00:00 2001 From: Henry Wang Date: Thu, 2 Sep 2021 21:38:44 -0400 Subject: [PATCH] scripts: Enable the live-migration test on AArch64 Signed-off-by: Henry Wang --- scripts/run_integration_tests_aarch64.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/scripts/run_integration_tests_aarch64.sh b/scripts/run_integration_tests_aarch64.sh index a7f776ab7..5ffc81876 100755 --- a/scripts/run_integration_tests_aarch64.sh +++ b/scripts/run_integration_tests_aarch64.sh @@ -249,7 +249,7 @@ process_common_args "$@" # aarch64 not supported for MSHV if [[ "$hypervisor" = "mshv" ]]; then - echo "Aarch64 is not supported in Microsoft Hypervisor" + echo "AArch64 is not supported in Microsoft Hypervisor" exit 1 fi @@ -302,4 +302,11 @@ service openvswitch-switch restart time cargo test $features_test "tests::parallel::$test_filter" RES=$? +if [ $RES -eq 0 ]; then + time cargo test $features_test "tests::live_migration::$test_filter" -- --test-threads=1 + RES=$? +else + exit $RES +fi + exit $RES