Skip image types covered in azure.sh

namely vhd-boot
This commit is contained in:
Alexander Todorov 2024-02-22 10:08:07 +02:00 committed by Tomáš Hozza
parent c67add4a6e
commit c25db57d7d

View file

@ -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[@]}")