From 8963613e910a125874c3d7008f7a3619703e9dda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Budai?= Date: Tue, 1 Dec 2020 15:54:44 +0100 Subject: [PATCH] tests: rename qemu test to libvirt test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This test case doesn't use qemu directly, libvirt is more appropriate name. Signed-off-by: Ondřej Budai --- schutzbot/Jenkinsfile | 8 ++++---- test/cases/{qemu.sh => libvirt.sh} | 0 2 files changed, 4 insertions(+), 4 deletions(-) rename test/cases/{qemu.sh => libvirt.sh} (100%) diff --git a/schutzbot/Jenkinsfile b/schutzbot/Jenkinsfile index 2f960fedc..b9e777c92 100644 --- a/schutzbot/Jenkinsfile +++ b/schutzbot/Jenkinsfile @@ -509,27 +509,27 @@ void run_tests(test_type, boot_type) { // Run the qcow2 BIOS boot test. sh ( label: "Integration test: QCOW2, BIOS boot", - script: "/usr/libexec/tests/osbuild-composer/qemu.sh qcow2" + script: "/usr/libexec/tests/osbuild-composer/libvirt.sh qcow2" ) if (boot_type == 'hybrid') { // Run the qcow2 UEFI boot test. sh ( label: "Integration test: QCOW2, UEFI boot", - script: "/usr/libexec/tests/osbuild-composer/qemu.sh qcow2 uefi" + script: "/usr/libexec/tests/osbuild-composer/libvirt.sh qcow2 uefi" ) } // Run the openstack test. sh ( label: "Integration test: OpenStack", - script: "/usr/libexec/tests/osbuild-composer/qemu.sh openstack" + script: "/usr/libexec/tests/osbuild-composer/libvirt.sh openstack" ) // Run the VHD/Azure test. sh ( label: "Integration test: VHD", - script: "/usr/libexec/tests/osbuild-composer/qemu.sh vhd" + script: "/usr/libexec/tests/osbuild-composer/libvirt.sh vhd" ) // Run the AWS test. diff --git a/test/cases/qemu.sh b/test/cases/libvirt.sh similarity index 100% rename from test/cases/qemu.sh rename to test/cases/libvirt.sh