scripts: error exit if aarch64 test is run on MSHV

Signed-off-by: Muminul Islam <muislam@microsoft.com>
This commit is contained in:
Muminul Islam 2021-02-03 16:21:33 -08:00 committed by Rob Bradford
parent 2c913b8130
commit 024675d1d8

View File

@ -180,6 +180,12 @@ update_workloads() {
process_common_args "$@"
# aarch64 not supported for MSHV
if [[ "$hypervisor" = "mshv" ]]; then
echo "Aarch64 is not supported in Microsoft Hypervisor"
exit 1
fi
features_build="--no-default-features --features $hypervisor "
features_test="--no-default-features --features integration_tests,$hypervisor"