]> git.proxmox.com Git - mirror_qemu.git/blob - tests/avocado/boot_linux.py
Merge tag 'for-upstream' of https://repo.or.cz/qemu/kevin into staging
[mirror_qemu.git] / tests / avocado / boot_linux.py
1 # Functional test that boots a complete Linux system via a cloud image
2 #
3 # Copyright (c) 2018-2020 Red Hat, Inc.
4 #
5 # Author:
6 # Cleber Rosa <crosa@redhat.com>
7 #
8 # This work is licensed under the terms of the GNU GPL, version 2 or
9 # later. See the COPYING file in the top-level directory.
10
11 import os
12
13 from avocado_qemu import LinuxTest, BUILD_DIR
14
15 from avocado import skipIf
16
17
18 class BootLinuxX8664(LinuxTest):
19 """
20 :avocado: tags=arch:x86_64
21 """
22 timeout = 480
23
24 def test_pc_i440fx_tcg(self):
25 """
26 :avocado: tags=machine:pc
27 :avocado: tags=accel:tcg
28 """
29 self.require_accelerator("tcg")
30 self.vm.add_args("-accel", "tcg")
31 self.launch_and_wait(set_up_ssh_connection=False)
32
33 def test_pc_i440fx_kvm(self):
34 """
35 :avocado: tags=machine:pc
36 :avocado: tags=accel:kvm
37 """
38 self.require_accelerator("kvm")
39 self.vm.add_args("-accel", "kvm")
40 self.launch_and_wait(set_up_ssh_connection=False)
41
42 def test_pc_q35_tcg(self):
43 """
44 :avocado: tags=machine:q35
45 :avocado: tags=accel:tcg
46 """
47 self.require_accelerator("tcg")
48 self.vm.add_args("-accel", "tcg")
49 self.launch_and_wait(set_up_ssh_connection=False)
50
51 def test_pc_q35_kvm(self):
52 """
53 :avocado: tags=machine:q35
54 :avocado: tags=accel:kvm
55 """
56 self.require_accelerator("kvm")
57 self.vm.add_args("-accel", "kvm")
58 self.launch_and_wait(set_up_ssh_connection=False)
59
60
61 # For Aarch64 we only boot KVM tests in CI as booting the current
62 # Fedora OS in TCG tests is very heavyweight. There are lighter weight
63 # distros which we use in the machine_aarch64_virt.py tests.
64 class BootLinuxAarch64(LinuxTest):
65 """
66 :avocado: tags=arch:aarch64
67 :avocado: tags=machine:virt
68 """
69 timeout = 720
70
71 def test_virt_kvm(self):
72 """
73 :avocado: tags=accel:kvm
74 :avocado: tags=cpu:host
75 """
76 self.require_accelerator("kvm")
77 self.vm.add_args("-accel", "kvm")
78 self.vm.add_args("-machine", "virt,gic-version=host")
79 self.vm.add_args('-bios',
80 os.path.join(BUILD_DIR, 'pc-bios',
81 'edk2-aarch64-code.fd'))
82 self.vm.add_args('-device', 'virtio-rng-pci,rng=rng0')
83 self.vm.add_args('-object', 'rng-random,id=rng0,filename=/dev/urandom')
84 self.launch_and_wait(set_up_ssh_connection=False)
85
86
87 class BootLinuxPPC64(LinuxTest):
88 """
89 :avocado: tags=arch:ppc64
90 """
91
92 timeout = 360
93
94 def test_pseries_tcg(self):
95 """
96 :avocado: tags=machine:pseries
97 :avocado: tags=accel:tcg
98 """
99 self.require_accelerator("tcg")
100 self.vm.add_args("-accel", "tcg")
101 self.launch_and_wait(set_up_ssh_connection=False)
102
103
104 class BootLinuxS390X(LinuxTest):
105 """
106 :avocado: tags=arch:s390x
107 """
108
109 timeout = 240
110
111 @skipIf(os.getenv('GITLAB_CI'), 'Running on GitLab')
112 def test_s390_ccw_virtio_tcg(self):
113 """
114 :avocado: tags=machine:s390-ccw-virtio
115 :avocado: tags=accel:tcg
116 """
117 self.require_accelerator("tcg")
118 self.vm.add_args("-accel", "tcg")
119 self.launch_and_wait(set_up_ssh_connection=False)