2
name: virtualization/virtualization-check
3
requires: cpuinfo.platform in ("i386", "x86_64")
7
Test to check that virtualization is supported and the test system has at least a minimal amount of RAM to function as an OpenStack Compute Node
10
name: virtualization/kvm_ok
11
requires: package.name == 'cpu-checker'
14
Test to determine if this system is capable of running hardware accelerated KVM virtual machines
17
name: virtualization/kvm_check_vm
19
package.name == 'qemu-kvm'
20
package.name == 'qemu-utils'
21
depends: virtualization/kvm_ok
22
command: virtualization kvm --debug
24
Test to check that a cloud image boots and works properly with KVM
27
name: virtualization/xen_ok
28
requires: package.name == 'libvirt-bin'
30
command: virsh -c xen:/// domstate Domain-0
32
Test to verify that the Xen Hypervisor is running.
35
name: virtualization/xen_check_vm
36
depends: virtualization/xen_ok
38
command: xen_test /images/xentest.img /images/xentest.xml
40
Test to check that a Xen domU image can boot and run on Xen on Ubuntu