~jocave/checkbox/hybrid-amd-gpu-mods

« back to all changes in this revision

Viewing changes to jobs/virtualization.txt.in

  • Committer: Zygmunt Krynicki
  • Date: 2013-05-17 13:54:25 UTC
  • mto: This revision was merged to the branch mainline in revision 2130.
  • Revision ID: zygmunt.krynicki@canonical.com-20130517135425-cxcenxx5t0qrtbxd
checkbox-ng: add CheckBoxNG sub-project

CheckBoxNG (or lowercase as checkbox-ng, pypi:checkbox-ng) is a clean
implementation of CheckBox on top of PlainBox. It provides a new
executable, 'checkbox' that has some of the same commands that were
previously implemented in the plainbox package.

In particular CheckBoxNG comes with the 'checkbox sru' command
(the same one as in plainbox). Later on this sub-command will be removed
from plainbox.

CheckBoxNG depends on plainbox >= 0.3

Signed-off-by: Zygmunt Krynicki <zygmunt.krynicki@canonical.com>

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
plugin: shell
 
2
name: virtualization/virtualization-check
 
3
requires: cpuinfo.platform in ("i386", "x86_64")
 
4
user: root
 
5
command: virt_check
 
6
_description:
 
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
 
8
 
 
9
plugin: shell
 
10
name: virtualization/kvm_ok
 
11
requires: package.name == 'cpu-checker'
 
12
command: kvm-ok
 
13
_description:
 
14
 Test to determine if this system is capable of running hardware accelerated KVM virtual machines
 
15
 
 
16
plugin: shell
 
17
name: virtualization/kvm_check_vm
 
18
requires: 
 
19
 package.name == 'qemu-kvm'
 
20
 package.name == 'qemu-utils'
 
21
depends: virtualization/kvm_ok
 
22
command: virtualization kvm --debug
 
23
_description:
 
24
 Test to check that a cloud image boots and works properly with KVM
 
25
 
 
26
plugin: shell
 
27
name: virtualization/xen_ok
 
28
requires: package.name == 'libvirt-bin'
 
29
user: root
 
30
command: virsh -c xen:/// domstate Domain-0
 
31
_description:
 
32
 Test to verify that the Xen Hypervisor is running.
 
33
 
 
34
plugin: shell
 
35
name: virtualization/xen_check_vm
 
36
depends: virtualization/xen_ok
 
37
user: root
 
38
command: xen_test /images/xentest.img /images/xentest.xml
 
39
_description:
 
40
 Test to check that a Xen domU image can boot and run on Xen on Ubuntu