From 3d73f9cd3b13b4f3e98c6255748d67b551f8c28d Mon Sep 17 00:00:00 2001 From: Pavel Hrdina Date: Fri, 10 Jun 2016 17:42:07 +0200 Subject: [PATCH] tests: add aarch64 domcapabilities Signed-off-by: Pavel Hrdina --- .../capabilities-xml/kvm-aarch64-domcaps.xml | 75 +++++++++++++++++++ tests/utils.py | 3 +- 2 files changed, 77 insertions(+), 1 deletion(-) create mode 100644 tests/capabilities-xml/kvm-aarch64-domcaps.xml diff --git a/tests/capabilities-xml/kvm-aarch64-domcaps.xml b/tests/capabilities-xml/kvm-aarch64-domcaps.xml new file mode 100644 index 00000000..e515666a --- /dev/null +++ b/tests/capabilities-xml/kvm-aarch64-domcaps.xml @@ -0,0 +1,75 @@ + + /usr/libexec/qemu-kvm + qemu + virt + aarch64 + + + + /usr/share/AAVMF/AAVMF_CODE.fd + + rom + pflash + + + yes + no + + + + + + + disk + cdrom + floppy + lun + + + ide + fdc + scsi + virtio + + + + + sdl + vnc + + + + + + subsystem + + + default + mandatory + requisite + optional + + + usb + pci + scsi + + + + + + + + + 2 + + + + + + diff --git a/tests/utils.py b/tests/utils.py index aba2e6b5..013b3051 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -40,13 +40,14 @@ uri_test_remote = uri_test + ",remote" _uri_qemu = "%s,qemu" % uri_test _uri_kvm_domcaps = (_uri_qemu + _domcapsprefix + "kvm-x86_64-domcaps.xml") +_uri_kvm_aarch64_domcaps = (_uri_qemu + _domcapsprefix + "kvm-aarch64-domcaps.xml") uri_kvm_nodomcaps = (_uri_qemu + _capsprefix + "kvm-x86_64.xml") uri_kvm_rhel = (_uri_kvm_domcaps + _capsprefix + "kvm-x86_64-rhel7.xml") uri_kvm = (_uri_kvm_domcaps + _capsprefix + "kvm-x86_64.xml") uri_kvm_session = uri_kvm + ",session" uri_kvm_armv7l = (_uri_kvm_domcaps + _capsprefix + "kvm-armv7l.xml") -uri_kvm_aarch64 = (_uri_kvm_domcaps + _capsprefix + "kvm-aarch64.xml") +uri_kvm_aarch64 = (_uri_kvm_aarch64_domcaps + _capsprefix + "kvm-aarch64.xml") uri_kvm_ppc64le = (_uri_kvm_domcaps + _capsprefix + "kvm-ppc64le.xml") uri_kvm_s390x = (_uri_kvm_domcaps + _capsprefix + "kvm-s390x.xml") uri_kvm_s390x_KVMIBM = (_uri_kvm_domcaps + _capsprefix + "kvm-s390x-KVMIBM.xml")