schutzbot: don't boot-test vmdk images in libvirt

The vmdk images are meant to be imported into VMWare vCenter, not to be
booted directly.

Our image-info tests verifies that this work, they should be converted
into integration tests similar to the aws.sh script in the future.

Signed-off-by: Tom Gundersen <teg@jklm.no>
This commit is contained in:
Tom Gundersen 2020-08-22 16:04:51 +02:00
parent b0cd29f78b
commit 496f921eff
2 changed files with 2 additions and 8 deletions

View file

@ -394,12 +394,6 @@ void run_tests(test_type) {
script: "test/image-tests/qemu.sh vhd"
)
// Run the VMDK/VMware test.
sh (
label: "Integration test: VMDK",
script: "test/image-tests/qemu.sh vmdk"
)
// Run the AWS test.
sh (
label: "Integration test: AWS",

View file

@ -16,8 +16,8 @@ if [[ $IMAGE_TYPE == 'openstack' ]]; then
fi
# RHEL 8 cannot boot a VMDK using libvirt. See BZ 999789.
if [[ $IMAGE_TYPE == vmdk ]] && [[ $ID == rhel ]]; then
echo "🤷 RHEL 8 cannot boot a VMDK. See BZ 999789."
if [[ $IMAGE_TYPE == vmdk ]]; then
echo "🤷 libvirt cannot boot stream-optimized VMDK."
exit 0
fi