Expand native tests to include VHD/VMDK

Add VHD/VMDK support to the QEMU native compose/boot test.

Signed-off-by: Major Hayden <major@redhat.com>
This commit is contained in:
Major Hayden 2020-06-09 12:52:52 -05:00 committed by Major Hayden
parent ffb846d3b5
commit 7b562d943c
2 changed files with 64 additions and 17 deletions

16
schutzbot/Jenkinsfile vendored
View file

@ -261,13 +261,25 @@ void run_tests(test_type) {
// Run the qcow2 test.
sh (
label: "Integration test: QCOW2",
script: "test/image-tests/qcow2.sh qcow2"
script: "test/image-tests/qemu.sh qcow2"
)
// Run the openstack test.
sh (
label: "Integration test: OpenStack",
script: "test/image-tests/qcow2.sh openstack"
script: "test/image-tests/qemu.sh openstack"
)
// Run the VHD/Azure test.
sh (
label: "Integration test: VHD",
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.