From c25db57d7da011803915806406cb25349a15ed1d Mon Sep 17 00:00:00 2001 From: Alexander Todorov Date: Thu, 22 Feb 2024 10:08:07 +0200 Subject: [PATCH] Skip image types covered in azure.sh namely vhd-boot --- test/cases/image_tests.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/cases/image_tests.sh b/test/cases/image_tests.sh index d23d36f86..2fb0e0bdd 100755 --- a/test/cases/image_tests.sh +++ b/test/cases/image_tests.sh @@ -59,6 +59,10 @@ get_test_cases () { SKIP_CASES=("${SKIP_OSTREE[@]}") fi + # skip image types covered in azure.sh + SKIP_AZURE=$(grep vhd-boot <<< "$ALL_CASES" || echo -n) + SKIP_CASES=("${SKIP_CASES[@]}" "$SKIP_AZURE") + # skip image types covered in vmware.sh SKIP_OVA=$(grep -E 'ova-boot|vmdk-boot' <<< "$ALL_CASES" || echo -n) SKIP_CASES=("${SKIP_CASES[@]}" "${SKIP_OVA[@]}")