scripts: Enable the live-migration test on AArch64

Signed-off-by: Henry Wang <Henry.Wang@arm.com>
This commit is contained in:
Henry Wang 2021-09-02 21:38:44 -04:00 committed by Rob Bradford
parent 7549149bb5
commit 5d53648762

View File

@ -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