Merge remote-tracking branch 'remotes/mst/tags/for_upstream' into staging
[qemu/ar7.git] / tests / acceptance / boot_linux_console.py
blob1ca32ecf253b67097f8c9af70f73cb6871e77bd3
1 # Functional test that boots a Linux kernel and checks the console
3 # Copyright (c) 2018 Red Hat, Inc.
5 # Author:
6 # Cleber Rosa <crosa@redhat.com>
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.
11 import os
12 import lzma
13 import gzip
14 import shutil
16 from avocado import skip
17 from avocado import skipUnless
18 from avocado_qemu import Test
19 from avocado_qemu import exec_command_and_wait_for_pattern
20 from avocado_qemu import interrupt_interactive_console_until_pattern
21 from avocado_qemu import wait_for_console_pattern
22 from avocado.utils import process
23 from avocado.utils import archive
24 from avocado.utils.path import find_command, CmdNotFoundError
26 P7ZIP_AVAILABLE = True
27 try:
28 find_command('7z')
29 except CmdNotFoundError:
30 P7ZIP_AVAILABLE = False
32 """
33 Round up to next power of 2
34 """
35 def pow2ceil(x):
36 return 1 if x == 0 else 2**(x - 1).bit_length()
38 """
39 Expand file size to next power of 2
40 """
41 def image_pow2ceil_expand(path):
42 size = os.path.getsize(path)
43 size_aligned = pow2ceil(size)
44 if size != size_aligned:
45 with open(path, 'ab+') as fd:
46 fd.truncate(size_aligned)
48 class LinuxKernelTest(Test):
49 KERNEL_COMMON_COMMAND_LINE = 'printk.time=0 '
51 def wait_for_console_pattern(self, success_message, vm=None):
52 wait_for_console_pattern(self, success_message,
53 failure_message='Kernel panic - not syncing',
54 vm=vm)
56 def extract_from_deb(self, deb, path):
57 """
58 Extracts a file from a deb package into the test workdir
60 :param deb: path to the deb archive
61 :param path: path within the deb archive of the file to be extracted
62 :returns: path of the extracted file
63 """
64 cwd = os.getcwd()
65 os.chdir(self.workdir)
66 file_path = process.run("ar t %s" % deb).stdout_text.split()[2]
67 process.run("ar x %s %s" % (deb, file_path))
68 archive.extract(file_path, self.workdir)
69 os.chdir(cwd)
70 # Return complete path to extracted file. Because callers to
71 # extract_from_deb() specify 'path' with a leading slash, it is
72 # necessary to use os.path.relpath() as otherwise os.path.join()
73 # interprets it as an absolute path and drops the self.workdir part.
74 return os.path.normpath(os.path.join(self.workdir,
75 os.path.relpath(path, '/')))
77 def extract_from_rpm(self, rpm, path):
78 """
79 Extracts a file from an RPM package into the test workdir.
81 :param rpm: path to the rpm archive
82 :param path: path within the rpm archive of the file to be extracted
83 needs to be a relative path (starting with './') because
84 cpio(1), which is used to extract the file, expects that.
85 :returns: path of the extracted file
86 """
87 cwd = os.getcwd()
88 os.chdir(self.workdir)
89 process.run("rpm2cpio %s | cpio -id %s" % (rpm, path), shell=True)
90 os.chdir(cwd)
91 return os.path.normpath(os.path.join(self.workdir, path))
93 class BootLinuxConsole(LinuxKernelTest):
94 """
95 Boots a Linux kernel and checks that the console is operational and the
96 kernel command line is properly passed from QEMU to the kernel
97 """
98 timeout = 90
100 def test_x86_64_pc(self):
102 :avocado: tags=arch:x86_64
103 :avocado: tags=machine:pc
105 kernel_url = ('https://archives.fedoraproject.org/pub/archive/fedora'
106 '/linux/releases/29/Everything/x86_64/os/images/pxeboot'
107 '/vmlinuz')
108 kernel_hash = '23bebd2680757891cf7adedb033532163a792495'
109 kernel_path = self.fetch_asset(kernel_url, asset_hash=kernel_hash)
111 self.vm.set_console()
112 kernel_command_line = self.KERNEL_COMMON_COMMAND_LINE + 'console=ttyS0'
113 self.vm.add_args('-kernel', kernel_path,
114 '-append', kernel_command_line)
115 self.vm.launch()
116 console_pattern = 'Kernel command line: %s' % kernel_command_line
117 self.wait_for_console_pattern(console_pattern)
119 def test_mips_malta(self):
121 :avocado: tags=arch:mips
122 :avocado: tags=machine:malta
123 :avocado: tags=endian:big
125 deb_url = ('http://snapshot.debian.org/archive/debian/'
126 '20130217T032700Z/pool/main/l/linux-2.6/'
127 'linux-image-2.6.32-5-4kc-malta_2.6.32-48_mips.deb')
128 deb_hash = 'a8cfc28ad8f45f54811fc6cf74fc43ffcfe0ba04'
129 deb_path = self.fetch_asset(deb_url, asset_hash=deb_hash)
130 kernel_path = self.extract_from_deb(deb_path,
131 '/boot/vmlinux-2.6.32-5-4kc-malta')
133 self.vm.set_console()
134 kernel_command_line = self.KERNEL_COMMON_COMMAND_LINE + 'console=ttyS0'
135 self.vm.add_args('-kernel', kernel_path,
136 '-append', kernel_command_line)
137 self.vm.launch()
138 console_pattern = 'Kernel command line: %s' % kernel_command_line
139 self.wait_for_console_pattern(console_pattern)
141 def test_mips64el_malta(self):
143 This test requires the ar tool to extract "data.tar.gz" from
144 the Debian package.
146 The kernel can be rebuilt using this Debian kernel source [1] and
147 following the instructions on [2].
149 [1] http://snapshot.debian.org/package/linux-2.6/2.6.32-48/
150 #linux-source-2.6.32_2.6.32-48
151 [2] https://kernel-team.pages.debian.net/kernel-handbook/
152 ch-common-tasks.html#s-common-official
154 :avocado: tags=arch:mips64el
155 :avocado: tags=machine:malta
157 deb_url = ('http://snapshot.debian.org/archive/debian/'
158 '20130217T032700Z/pool/main/l/linux-2.6/'
159 'linux-image-2.6.32-5-5kc-malta_2.6.32-48_mipsel.deb')
160 deb_hash = '1aaec92083bf22fda31e0d27fa8d9a388e5fc3d5'
161 deb_path = self.fetch_asset(deb_url, asset_hash=deb_hash)
162 kernel_path = self.extract_from_deb(deb_path,
163 '/boot/vmlinux-2.6.32-5-5kc-malta')
165 self.vm.set_console()
166 kernel_command_line = self.KERNEL_COMMON_COMMAND_LINE + 'console=ttyS0'
167 self.vm.add_args('-kernel', kernel_path,
168 '-append', kernel_command_line)
169 self.vm.launch()
170 console_pattern = 'Kernel command line: %s' % kernel_command_line
171 self.wait_for_console_pattern(console_pattern)
173 def test_mips64el_fuloong2e(self):
175 :avocado: tags=arch:mips64el
176 :avocado: tags=machine:fuloong2e
177 :avocado: tags=endian:little
179 deb_url = ('http://archive.debian.org/debian/pool/main/l/linux/'
180 'linux-image-3.16.0-6-loongson-2e_3.16.56-1+deb8u1_mipsel.deb')
181 deb_hash = 'd04d446045deecf7b755ef576551de0c4184dd44'
182 deb_path = self.fetch_asset(deb_url, asset_hash=deb_hash)
183 kernel_path = self.extract_from_deb(deb_path,
184 '/boot/vmlinux-3.16.0-6-loongson-2e')
186 self.vm.set_console()
187 kernel_command_line = self.KERNEL_COMMON_COMMAND_LINE + 'console=ttyS0'
188 self.vm.add_args('-kernel', kernel_path,
189 '-append', kernel_command_line)
190 self.vm.launch()
191 console_pattern = 'Kernel command line: %s' % kernel_command_line
192 self.wait_for_console_pattern(console_pattern)
194 def test_mips_malta_cpio(self):
196 :avocado: tags=arch:mips
197 :avocado: tags=machine:malta
198 :avocado: tags=endian:big
200 deb_url = ('http://snapshot.debian.org/archive/debian/'
201 '20160601T041800Z/pool/main/l/linux/'
202 'linux-image-4.5.0-2-4kc-malta_4.5.5-1_mips.deb')
203 deb_hash = 'a3c84f3e88b54e06107d65a410d1d1e8e0f340f8'
204 deb_path = self.fetch_asset(deb_url, asset_hash=deb_hash)
205 kernel_path = self.extract_from_deb(deb_path,
206 '/boot/vmlinux-4.5.0-2-4kc-malta')
207 initrd_url = ('https://github.com/groeck/linux-build-test/raw/'
208 '8584a59ed9e5eb5ee7ca91f6d74bbb06619205b8/rootfs/'
209 'mips/rootfs.cpio.gz')
210 initrd_hash = 'bf806e17009360a866bf537f6de66590de349a99'
211 initrd_path_gz = self.fetch_asset(initrd_url, asset_hash=initrd_hash)
212 initrd_path = self.workdir + "rootfs.cpio"
213 archive.gzip_uncompress(initrd_path_gz, initrd_path)
215 self.vm.set_console()
216 kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE
217 + 'console=ttyS0 console=tty '
218 + 'rdinit=/sbin/init noreboot')
219 self.vm.add_args('-kernel', kernel_path,
220 '-initrd', initrd_path,
221 '-append', kernel_command_line,
222 '-no-reboot')
223 self.vm.launch()
224 self.wait_for_console_pattern('Boot successful.')
226 exec_command_and_wait_for_pattern(self, 'cat /proc/cpuinfo',
227 'BogoMIPS')
228 exec_command_and_wait_for_pattern(self, 'uname -a',
229 'Debian')
230 exec_command_and_wait_for_pattern(self, 'reboot',
231 'reboot: Restarting system')
232 # Wait for VM to shut down gracefully
233 self.vm.wait()
235 @skipUnless(os.getenv('AVOCADO_ALLOW_UNTRUSTED_CODE'), 'untrusted code')
236 def test_mips64el_malta_5KEc_cpio(self):
238 :avocado: tags=arch:mips64el
239 :avocado: tags=machine:malta
240 :avocado: tags=endian:little
242 kernel_url = ('https://github.com/philmd/qemu-testing-blob/'
243 'raw/9ad2df38/mips/malta/mips64el/'
244 'vmlinux-3.19.3.mtoman.20150408')
245 kernel_hash = '00d1d268fb9f7d8beda1de6bebcc46e884d71754'
246 kernel_path = self.fetch_asset(kernel_url, asset_hash=kernel_hash)
247 initrd_url = ('https://github.com/groeck/linux-build-test/'
248 'raw/8584a59e/rootfs/'
249 'mipsel64/rootfs.mipsel64r1.cpio.gz')
250 initrd_hash = '1dbb8a396e916847325284dbe2151167'
251 initrd_path_gz = self.fetch_asset(initrd_url, algorithm='md5',
252 asset_hash=initrd_hash)
253 initrd_path = self.workdir + "rootfs.cpio"
254 archive.gzip_uncompress(initrd_path_gz, initrd_path)
256 self.vm.set_console()
257 kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE
258 + 'console=ttyS0 console=tty '
259 + 'rdinit=/sbin/init noreboot')
260 self.vm.add_args('-cpu', '5KEc',
261 '-kernel', kernel_path,
262 '-initrd', initrd_path,
263 '-append', kernel_command_line,
264 '-no-reboot')
265 self.vm.launch()
266 wait_for_console_pattern(self, 'Boot successful.')
268 exec_command_and_wait_for_pattern(self, 'cat /proc/cpuinfo',
269 'MIPS 5KE')
270 exec_command_and_wait_for_pattern(self, 'uname -a',
271 '3.19.3.mtoman.20150408')
272 exec_command_and_wait_for_pattern(self, 'reboot',
273 'reboot: Restarting system')
274 # Wait for VM to shut down gracefully
275 self.vm.wait()
277 def do_test_mips_malta32el_nanomips(self, kernel_url, kernel_hash):
278 kernel_path_xz = self.fetch_asset(kernel_url, asset_hash=kernel_hash)
279 kernel_path = self.workdir + "kernel"
280 with lzma.open(kernel_path_xz, 'rb') as f_in:
281 with open(kernel_path, 'wb') as f_out:
282 shutil.copyfileobj(f_in, f_out)
284 self.vm.set_console()
285 kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE
286 + 'mem=256m@@0x0 '
287 + 'console=ttyS0')
288 self.vm.add_args('-no-reboot',
289 '-cpu', 'I7200',
290 '-kernel', kernel_path,
291 '-append', kernel_command_line)
292 self.vm.launch()
293 console_pattern = 'Kernel command line: %s' % kernel_command_line
294 self.wait_for_console_pattern(console_pattern)
296 def test_mips_malta32el_nanomips_4k(self):
298 :avocado: tags=arch:mipsel
299 :avocado: tags=machine:malta
300 :avocado: tags=endian:little
302 kernel_url = ('https://mipsdistros.mips.com/LinuxDistro/nanomips/'
303 'kernels/v4.15.18-432-gb2eb9a8b07a1-20180627102142/'
304 'generic_nano32r6el_page4k.xz')
305 kernel_hash = '477456aafd2a0f1ddc9482727f20fe9575565dd6'
306 self.do_test_mips_malta32el_nanomips(kernel_url, kernel_hash)
308 def test_mips_malta32el_nanomips_16k_up(self):
310 :avocado: tags=arch:mipsel
311 :avocado: tags=machine:malta
312 :avocado: tags=endian:little
314 kernel_url = ('https://mipsdistros.mips.com/LinuxDistro/nanomips/'
315 'kernels/v4.15.18-432-gb2eb9a8b07a1-20180627102142/'
316 'generic_nano32r6el_page16k_up.xz')
317 kernel_hash = 'e882868f944c71c816e832e2303b7874d044a7bc'
318 self.do_test_mips_malta32el_nanomips(kernel_url, kernel_hash)
320 def test_mips_malta32el_nanomips_64k_dbg(self):
322 :avocado: tags=arch:mipsel
323 :avocado: tags=machine:malta
324 :avocado: tags=endian:little
326 kernel_url = ('https://mipsdistros.mips.com/LinuxDistro/nanomips/'
327 'kernels/v4.15.18-432-gb2eb9a8b07a1-20180627102142/'
328 'generic_nano32r6el_page64k_dbg.xz')
329 kernel_hash = '18d1c68f2e23429e266ca39ba5349ccd0aeb7180'
330 self.do_test_mips_malta32el_nanomips(kernel_url, kernel_hash)
332 def test_aarch64_virt(self):
334 :avocado: tags=arch:aarch64
335 :avocado: tags=machine:virt
337 kernel_url = ('https://archives.fedoraproject.org/pub/archive/fedora'
338 '/linux/releases/29/Everything/aarch64/os/images/pxeboot'
339 '/vmlinuz')
340 kernel_hash = '8c73e469fc6ea06a58dc83a628fc695b693b8493'
341 kernel_path = self.fetch_asset(kernel_url, asset_hash=kernel_hash)
343 self.vm.set_console()
344 kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE +
345 'console=ttyAMA0')
346 self.vm.add_args('-cpu', 'cortex-a53',
347 '-kernel', kernel_path,
348 '-append', kernel_command_line)
349 self.vm.launch()
350 console_pattern = 'Kernel command line: %s' % kernel_command_line
351 self.wait_for_console_pattern(console_pattern)
353 def test_aarch64_xlnx_versal_virt(self):
355 :avocado: tags=arch:aarch64
356 :avocado: tags=machine:xlnx-versal-virt
357 :avocado: tags=device:pl011
358 :avocado: tags=device:arm_gicv3
360 images_url = ('http://ports.ubuntu.com/ubuntu-ports/dists/'
361 'bionic-updates/main/installer-arm64/'
362 '20101020ubuntu543.15/images/')
363 kernel_url = images_url + 'netboot/ubuntu-installer/arm64/linux'
364 kernel_hash = '5bfc54cf7ed8157d93f6e5b0241e727b6dc22c50'
365 kernel_path = self.fetch_asset(kernel_url, asset_hash=kernel_hash)
367 initrd_url = images_url + 'netboot/ubuntu-installer/arm64/initrd.gz'
368 initrd_hash = 'd385d3e88d53e2004c5d43cbe668b458a094f772'
369 initrd_path = self.fetch_asset(initrd_url, asset_hash=initrd_hash)
371 self.vm.set_console()
372 self.vm.add_args('-m', '2G',
373 '-kernel', kernel_path,
374 '-initrd', initrd_path)
375 self.vm.launch()
376 self.wait_for_console_pattern('Checked W+X mappings: passed')
378 def test_arm_virt(self):
380 :avocado: tags=arch:arm
381 :avocado: tags=machine:virt
383 kernel_url = ('https://archives.fedoraproject.org/pub/archive/fedora'
384 '/linux/releases/29/Everything/armhfp/os/images/pxeboot'
385 '/vmlinuz')
386 kernel_hash = 'e9826d741b4fb04cadba8d4824d1ed3b7fb8b4d4'
387 kernel_path = self.fetch_asset(kernel_url, asset_hash=kernel_hash)
389 self.vm.set_console()
390 kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE +
391 'console=ttyAMA0')
392 self.vm.add_args('-kernel', kernel_path,
393 '-append', kernel_command_line)
394 self.vm.launch()
395 console_pattern = 'Kernel command line: %s' % kernel_command_line
396 self.wait_for_console_pattern(console_pattern)
398 def test_arm_emcraft_sf2(self):
400 :avocado: tags=arch:arm
401 :avocado: tags=machine:emcraft-sf2
402 :avocado: tags=endian:little
403 :avocado: tags=u-boot
405 uboot_url = ('https://raw.githubusercontent.com/'
406 'Subbaraya-Sundeep/qemu-test-binaries/'
407 'fe371d32e50ca682391e1e70ab98c2942aeffb01/u-boot')
408 uboot_hash = 'cbb8cbab970f594bf6523b9855be209c08374ae2'
409 uboot_path = self.fetch_asset(uboot_url, asset_hash=uboot_hash)
410 spi_url = ('https://raw.githubusercontent.com/'
411 'Subbaraya-Sundeep/qemu-test-binaries/'
412 'fe371d32e50ca682391e1e70ab98c2942aeffb01/spi.bin')
413 spi_hash = '65523a1835949b6f4553be96dec1b6a38fb05501'
414 spi_path = self.fetch_asset(spi_url, asset_hash=spi_hash)
416 self.vm.set_console()
417 kernel_command_line = self.KERNEL_COMMON_COMMAND_LINE
418 self.vm.add_args('-kernel', uboot_path,
419 '-append', kernel_command_line,
420 '-drive', 'file=' + spi_path + ',if=mtd,format=raw',
421 '-no-reboot')
422 self.vm.launch()
423 self.wait_for_console_pattern('Enter \'help\' for a list')
425 exec_command_and_wait_for_pattern(self, 'ifconfig eth0 10.0.2.15',
426 'eth0: link becomes ready')
427 exec_command_and_wait_for_pattern(self, 'ping -c 3 10.0.2.2',
428 '3 packets transmitted, 3 packets received, 0% packet loss')
430 def do_test_arm_raspi2(self, uart_id):
432 The kernel can be rebuilt using the kernel source referenced
433 and following the instructions on the on:
434 https://www.raspberrypi.org/documentation/linux/kernel/building.md
436 serial_kernel_cmdline = {
437 0: 'earlycon=pl011,0x3f201000 console=ttyAMA0',
439 deb_url = ('http://archive.raspberrypi.org/debian/'
440 'pool/main/r/raspberrypi-firmware/'
441 'raspberrypi-kernel_1.20190215-1_armhf.deb')
442 deb_hash = 'cd284220b32128c5084037553db3c482426f3972'
443 deb_path = self.fetch_asset(deb_url, asset_hash=deb_hash)
444 kernel_path = self.extract_from_deb(deb_path, '/boot/kernel7.img')
445 dtb_path = self.extract_from_deb(deb_path, '/boot/bcm2709-rpi-2-b.dtb')
447 self.vm.set_console()
448 kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE +
449 serial_kernel_cmdline[uart_id] +
450 ' root=/dev/mmcblk0p2 rootwait ' +
451 'dwc_otg.fiq_fsm_enable=0')
452 self.vm.add_args('-kernel', kernel_path,
453 '-dtb', dtb_path,
454 '-append', kernel_command_line,
455 '-device', 'usb-kbd')
456 self.vm.launch()
457 console_pattern = 'Kernel command line: %s' % kernel_command_line
458 self.wait_for_console_pattern(console_pattern)
459 console_pattern = 'Product: QEMU USB Keyboard'
460 self.wait_for_console_pattern(console_pattern)
462 def test_arm_raspi2_uart0(self):
464 :avocado: tags=arch:arm
465 :avocado: tags=machine:raspi2
466 :avocado: tags=device:pl011
468 self.do_test_arm_raspi2(0)
470 def test_arm_exynos4210_initrd(self):
472 :avocado: tags=arch:arm
473 :avocado: tags=machine:smdkc210
475 deb_url = ('https://snapshot.debian.org/archive/debian/'
476 '20190928T224601Z/pool/main/l/linux/'
477 'linux-image-4.19.0-6-armmp_4.19.67-2+deb10u1_armhf.deb')
478 deb_hash = 'fa9df4a0d38936cb50084838f2cb933f570d7d82'
479 deb_path = self.fetch_asset(deb_url, asset_hash=deb_hash)
480 kernel_path = self.extract_from_deb(deb_path,
481 '/boot/vmlinuz-4.19.0-6-armmp')
482 dtb_path = '/usr/lib/linux-image-4.19.0-6-armmp/exynos4210-smdkv310.dtb'
483 dtb_path = self.extract_from_deb(deb_path, dtb_path)
485 initrd_url = ('https://github.com/groeck/linux-build-test/raw/'
486 '2eb0a73b5d5a28df3170c546ddaaa9757e1e0848/rootfs/'
487 'arm/rootfs-armv5.cpio.gz')
488 initrd_hash = '2b50f1873e113523967806f4da2afe385462ff9b'
489 initrd_path_gz = self.fetch_asset(initrd_url, asset_hash=initrd_hash)
490 initrd_path = os.path.join(self.workdir, 'rootfs.cpio')
491 archive.gzip_uncompress(initrd_path_gz, initrd_path)
493 self.vm.set_console()
494 kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE +
495 'earlycon=exynos4210,0x13800000 earlyprintk ' +
496 'console=ttySAC0,115200n8 ' +
497 'random.trust_cpu=off cryptomgr.notests ' +
498 'cpuidle.off=1 panic=-1 noreboot')
500 self.vm.add_args('-kernel', kernel_path,
501 '-dtb', dtb_path,
502 '-initrd', initrd_path,
503 '-append', kernel_command_line,
504 '-no-reboot')
505 self.vm.launch()
507 self.wait_for_console_pattern('Boot successful.')
508 # TODO user command, for now the uart is stuck
510 def test_arm_cubieboard_initrd(self):
512 :avocado: tags=arch:arm
513 :avocado: tags=machine:cubieboard
515 deb_url = ('https://apt.armbian.com/pool/main/l/'
516 'linux-5.10.16-sunxi/linux-image-current-sunxi_21.02.2_armhf.deb')
517 deb_hash = '9fa84beda245cabf0b4fa84cf6eaa7738ead1da0'
518 deb_path = self.fetch_asset(deb_url, asset_hash=deb_hash)
519 kernel_path = self.extract_from_deb(deb_path,
520 '/boot/vmlinuz-5.10.16-sunxi')
521 dtb_path = '/usr/lib/linux-image-current-sunxi/sun4i-a10-cubieboard.dtb'
522 dtb_path = self.extract_from_deb(deb_path, dtb_path)
523 initrd_url = ('https://github.com/groeck/linux-build-test/raw/'
524 '2eb0a73b5d5a28df3170c546ddaaa9757e1e0848/rootfs/'
525 'arm/rootfs-armv5.cpio.gz')
526 initrd_hash = '2b50f1873e113523967806f4da2afe385462ff9b'
527 initrd_path_gz = self.fetch_asset(initrd_url, asset_hash=initrd_hash)
528 initrd_path = os.path.join(self.workdir, 'rootfs.cpio')
529 archive.gzip_uncompress(initrd_path_gz, initrd_path)
531 self.vm.set_console()
532 kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE +
533 'console=ttyS0,115200 '
534 'usbcore.nousb '
535 'panic=-1 noreboot')
536 self.vm.add_args('-kernel', kernel_path,
537 '-dtb', dtb_path,
538 '-initrd', initrd_path,
539 '-append', kernel_command_line,
540 '-no-reboot')
541 self.vm.launch()
542 self.wait_for_console_pattern('Boot successful.')
544 exec_command_and_wait_for_pattern(self, 'cat /proc/cpuinfo',
545 'Allwinner sun4i/sun5i')
546 exec_command_and_wait_for_pattern(self, 'cat /proc/iomem',
547 'system-control@1c00000')
548 # cubieboard's reboot is not functioning; omit reboot test.
550 def test_arm_cubieboard_sata(self):
552 :avocado: tags=arch:arm
553 :avocado: tags=machine:cubieboard
555 deb_url = ('https://apt.armbian.com/pool/main/l/'
556 'linux-5.10.16-sunxi/linux-image-current-sunxi_21.02.2_armhf.deb')
557 deb_hash = '9fa84beda245cabf0b4fa84cf6eaa7738ead1da0'
558 deb_path = self.fetch_asset(deb_url, asset_hash=deb_hash)
559 kernel_path = self.extract_from_deb(deb_path,
560 '/boot/vmlinuz-5.10.16-sunxi')
561 dtb_path = '/usr/lib/linux-image-current-sunxi/sun4i-a10-cubieboard.dtb'
562 dtb_path = self.extract_from_deb(deb_path, dtb_path)
563 rootfs_url = ('https://github.com/groeck/linux-build-test/raw/'
564 '2eb0a73b5d5a28df3170c546ddaaa9757e1e0848/rootfs/'
565 'arm/rootfs-armv5.ext2.gz')
566 rootfs_hash = '093e89d2b4d982234bf528bc9fb2f2f17a9d1f93'
567 rootfs_path_gz = self.fetch_asset(rootfs_url, asset_hash=rootfs_hash)
568 rootfs_path = os.path.join(self.workdir, 'rootfs.cpio')
569 archive.gzip_uncompress(rootfs_path_gz, rootfs_path)
571 self.vm.set_console()
572 kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE +
573 'console=ttyS0,115200 '
574 'usbcore.nousb '
575 'root=/dev/sda ro '
576 'panic=-1 noreboot')
577 self.vm.add_args('-kernel', kernel_path,
578 '-dtb', dtb_path,
579 '-drive', 'if=none,format=raw,id=disk0,file='
580 + rootfs_path,
581 '-device', 'ide-hd,bus=ide.0,drive=disk0',
582 '-append', kernel_command_line,
583 '-no-reboot')
584 self.vm.launch()
585 self.wait_for_console_pattern('Boot successful.')
587 exec_command_and_wait_for_pattern(self, 'cat /proc/cpuinfo',
588 'Allwinner sun4i/sun5i')
589 exec_command_and_wait_for_pattern(self, 'cat /proc/partitions',
590 'sda')
591 # cubieboard's reboot is not functioning; omit reboot test.
593 @skipUnless(os.getenv('AVOCADO_TIMEOUT_EXPECTED'), 'Test might timeout')
594 def test_arm_quanta_gsj(self):
596 :avocado: tags=arch:arm
597 :avocado: tags=machine:quanta-gsj
599 # 25 MiB compressed, 32 MiB uncompressed.
600 image_url = (
601 'https://github.com/hskinnemoen/openbmc/releases/download/'
602 '20200711-gsj-qemu-0/obmc-phosphor-image-gsj.static.mtd.gz')
603 image_hash = '14895e634923345cb5c8776037ff7876df96f6b1'
604 image_path_gz = self.fetch_asset(image_url, asset_hash=image_hash)
605 image_name = 'obmc.mtd'
606 image_path = os.path.join(self.workdir, image_name)
607 archive.gzip_uncompress(image_path_gz, image_path)
609 self.vm.set_console()
610 drive_args = 'file=' + image_path + ',if=mtd,bus=0,unit=0'
611 self.vm.add_args('-drive', drive_args)
612 self.vm.launch()
614 # Disable drivers and services that stall for a long time during boot,
615 # to avoid running past the 90-second timeout. These may be removed
616 # as the corresponding device support is added.
617 kernel_command_line = self.KERNEL_COMMON_COMMAND_LINE + (
618 'console=${console} '
619 'mem=${mem} '
620 'initcall_blacklist=npcm_i2c_bus_driver_init '
621 'systemd.mask=systemd-random-seed.service '
622 'systemd.mask=dropbearkey.service '
625 self.wait_for_console_pattern('> BootBlock by Nuvoton')
626 self.wait_for_console_pattern('>Device: Poleg BMC NPCM730')
627 self.wait_for_console_pattern('>Skip DDR init.')
628 self.wait_for_console_pattern('U-Boot ')
629 interrupt_interactive_console_until_pattern(
630 self, 'Hit any key to stop autoboot:', 'U-Boot>')
631 exec_command_and_wait_for_pattern(
632 self, "setenv bootargs ${bootargs} " + kernel_command_line,
633 'U-Boot>')
634 exec_command_and_wait_for_pattern(
635 self, 'run romboot', 'Booting Kernel from flash')
636 self.wait_for_console_pattern('Booting Linux on physical CPU 0x0')
637 self.wait_for_console_pattern('CPU1: thread -1, cpu 1, socket 0')
638 self.wait_for_console_pattern('OpenBMC Project Reference Distro')
639 self.wait_for_console_pattern('gsj login:')
641 def test_arm_quanta_gsj_initrd(self):
643 :avocado: tags=arch:arm
644 :avocado: tags=machine:quanta-gsj
646 initrd_url = (
647 'https://github.com/hskinnemoen/openbmc/releases/download/'
648 '20200711-gsj-qemu-0/obmc-phosphor-initramfs-gsj.cpio.xz')
649 initrd_hash = '98fefe5d7e56727b1eb17d5c00311b1b5c945300'
650 initrd_path = self.fetch_asset(initrd_url, asset_hash=initrd_hash)
651 kernel_url = (
652 'https://github.com/hskinnemoen/openbmc/releases/download/'
653 '20200711-gsj-qemu-0/uImage-gsj.bin')
654 kernel_hash = 'fa67b2f141d56d39b3c54305c0e8a899c99eb2c7'
655 kernel_path = self.fetch_asset(kernel_url, asset_hash=kernel_hash)
656 dtb_url = (
657 'https://github.com/hskinnemoen/openbmc/releases/download/'
658 '20200711-gsj-qemu-0/nuvoton-npcm730-gsj.dtb')
659 dtb_hash = '18315f7006d7b688d8312d5c727eecd819aa36a4'
660 dtb_path = self.fetch_asset(dtb_url, asset_hash=dtb_hash)
662 self.vm.set_console()
663 kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE +
664 'console=ttyS0,115200n8 '
665 'earlycon=uart8250,mmio32,0xf0001000')
666 self.vm.add_args('-kernel', kernel_path,
667 '-initrd', initrd_path,
668 '-dtb', dtb_path,
669 '-append', kernel_command_line)
670 self.vm.launch()
672 self.wait_for_console_pattern('Booting Linux on physical CPU 0x0')
673 self.wait_for_console_pattern('CPU1: thread -1, cpu 1, socket 0')
674 self.wait_for_console_pattern(
675 'Give root password for system maintenance')
677 def test_arm_orangepi(self):
679 :avocado: tags=arch:arm
680 :avocado: tags=machine:orangepi-pc
682 deb_url = ('https://apt.armbian.com/pool/main/l/'
683 'linux-5.10.16-sunxi/linux-image-current-sunxi_21.02.2_armhf.deb')
684 deb_hash = '9fa84beda245cabf0b4fa84cf6eaa7738ead1da0'
685 deb_path = self.fetch_asset(deb_url, asset_hash=deb_hash)
686 kernel_path = self.extract_from_deb(deb_path,
687 '/boot/vmlinuz-5.10.16-sunxi')
688 dtb_path = '/usr/lib/linux-image-current-sunxi/sun8i-h3-orangepi-pc.dtb'
689 dtb_path = self.extract_from_deb(deb_path, dtb_path)
691 self.vm.set_console()
692 kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE +
693 'console=ttyS0,115200n8 '
694 'earlycon=uart,mmio32,0x1c28000')
695 self.vm.add_args('-kernel', kernel_path,
696 '-dtb', dtb_path,
697 '-append', kernel_command_line)
698 self.vm.launch()
699 console_pattern = 'Kernel command line: %s' % kernel_command_line
700 self.wait_for_console_pattern(console_pattern)
702 def test_arm_orangepi_initrd(self):
704 :avocado: tags=arch:arm
705 :avocado: tags=machine:orangepi-pc
707 deb_url = ('https://apt.armbian.com/pool/main/l/'
708 'linux-5.10.16-sunxi/linux-image-current-sunxi_21.02.2_armhf.deb')
709 deb_hash = '9fa84beda245cabf0b4fa84cf6eaa7738ead1da0'
710 deb_path = self.fetch_asset(deb_url, asset_hash=deb_hash)
711 kernel_path = self.extract_from_deb(deb_path,
712 '/boot/vmlinuz-5.10.16-sunxi')
713 dtb_path = '/usr/lib/linux-image-current-sunxi/sun8i-h3-orangepi-pc.dtb'
714 dtb_path = self.extract_from_deb(deb_path, dtb_path)
715 initrd_url = ('https://github.com/groeck/linux-build-test/raw/'
716 '2eb0a73b5d5a28df3170c546ddaaa9757e1e0848/rootfs/'
717 'arm/rootfs-armv7a.cpio.gz')
718 initrd_hash = '604b2e45cdf35045846b8bbfbf2129b1891bdc9c'
719 initrd_path_gz = self.fetch_asset(initrd_url, asset_hash=initrd_hash)
720 initrd_path = os.path.join(self.workdir, 'rootfs.cpio')
721 archive.gzip_uncompress(initrd_path_gz, initrd_path)
723 self.vm.set_console()
724 kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE +
725 'console=ttyS0,115200 '
726 'panic=-1 noreboot')
727 self.vm.add_args('-kernel', kernel_path,
728 '-dtb', dtb_path,
729 '-initrd', initrd_path,
730 '-append', kernel_command_line,
731 '-no-reboot')
732 self.vm.launch()
733 self.wait_for_console_pattern('Boot successful.')
735 exec_command_and_wait_for_pattern(self, 'cat /proc/cpuinfo',
736 'Allwinner sun8i Family')
737 exec_command_and_wait_for_pattern(self, 'cat /proc/iomem',
738 'system-control@1c00000')
739 exec_command_and_wait_for_pattern(self, 'reboot',
740 'reboot: Restarting system')
741 # Wait for VM to shut down gracefully
742 self.vm.wait()
744 def test_arm_orangepi_sd(self):
746 :avocado: tags=arch:arm
747 :avocado: tags=machine:orangepi-pc
748 :avocado: tags=device:sd
750 deb_url = ('https://apt.armbian.com/pool/main/l/'
751 'linux-5.10.16-sunxi/linux-image-current-sunxi_21.02.2_armhf.deb')
752 deb_hash = '9fa84beda245cabf0b4fa84cf6eaa7738ead1da0'
753 deb_path = self.fetch_asset(deb_url, asset_hash=deb_hash)
754 kernel_path = self.extract_from_deb(deb_path,
755 '/boot/vmlinuz-5.10.16-sunxi')
756 dtb_path = '/usr/lib/linux-image-current-sunxi/sun8i-h3-orangepi-pc.dtb'
757 dtb_path = self.extract_from_deb(deb_path, dtb_path)
758 rootfs_url = ('http://storage.kernelci.org/images/rootfs/buildroot/'
759 'kci-2019.02/armel/base/rootfs.ext2.xz')
760 rootfs_hash = '692510cb625efda31640d1de0a8d60e26040f061'
761 rootfs_path_xz = self.fetch_asset(rootfs_url, asset_hash=rootfs_hash)
762 rootfs_path = os.path.join(self.workdir, 'rootfs.cpio')
763 archive.lzma_uncompress(rootfs_path_xz, rootfs_path)
764 image_pow2ceil_expand(rootfs_path)
766 self.vm.set_console()
767 kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE +
768 'console=ttyS0,115200 '
769 'root=/dev/mmcblk0 rootwait rw '
770 'panic=-1 noreboot')
771 self.vm.add_args('-kernel', kernel_path,
772 '-dtb', dtb_path,
773 '-drive', 'file=' + rootfs_path + ',if=sd,format=raw',
774 '-append', kernel_command_line,
775 '-no-reboot')
776 self.vm.launch()
777 shell_ready = "/bin/sh: can't access tty; job control turned off"
778 self.wait_for_console_pattern(shell_ready)
780 exec_command_and_wait_for_pattern(self, 'cat /proc/cpuinfo',
781 'Allwinner sun8i Family')
782 exec_command_and_wait_for_pattern(self, 'cat /proc/partitions',
783 'mmcblk0')
784 exec_command_and_wait_for_pattern(self, 'ifconfig eth0 up',
785 'eth0: Link is Up')
786 exec_command_and_wait_for_pattern(self, 'udhcpc eth0',
787 'udhcpc: lease of 10.0.2.15 obtained')
788 exec_command_and_wait_for_pattern(self, 'ping -c 3 10.0.2.2',
789 '3 packets transmitted, 3 packets received, 0% packet loss')
790 exec_command_and_wait_for_pattern(self, 'reboot',
791 'reboot: Restarting system')
792 # Wait for VM to shut down gracefully
793 self.vm.wait()
795 @skipUnless(os.getenv('AVOCADO_ALLOW_LARGE_STORAGE'), 'storage limited')
796 def test_arm_orangepi_bionic_20_08(self):
798 :avocado: tags=arch:arm
799 :avocado: tags=machine:orangepi-pc
800 :avocado: tags=device:sd
803 # This test download a 275 MiB compressed image and expand it
804 # to 1036 MiB, but the underlying filesystem is 1552 MiB...
805 # As we expand it to 2 GiB we are safe.
807 image_url = ('https://archive.armbian.com/orangepipc/archive/'
808 'Armbian_20.08.1_Orangepipc_bionic_current_5.8.5.img.xz')
809 image_hash = ('b4d6775f5673486329e45a0586bf06b6'
810 'dbe792199fd182ac6b9c7bb6c7d3e6dd')
811 image_path_xz = self.fetch_asset(image_url, asset_hash=image_hash,
812 algorithm='sha256')
813 image_path = archive.extract(image_path_xz, self.workdir)
814 image_pow2ceil_expand(image_path)
816 self.vm.set_console()
817 self.vm.add_args('-drive', 'file=' + image_path + ',if=sd,format=raw',
818 '-nic', 'user',
819 '-no-reboot')
820 self.vm.launch()
822 kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE +
823 'console=ttyS0,115200 '
824 'loglevel=7 '
825 'nosmp '
826 'systemd.default_timeout_start_sec=9000 '
827 'systemd.mask=armbian-zram-config.service '
828 'systemd.mask=armbian-ramlog.service')
830 self.wait_for_console_pattern('U-Boot SPL')
831 self.wait_for_console_pattern('Autoboot in ')
832 exec_command_and_wait_for_pattern(self, ' ', '=>')
833 exec_command_and_wait_for_pattern(self, "setenv extraargs '" +
834 kernel_command_line + "'", '=>')
835 exec_command_and_wait_for_pattern(self, 'boot', 'Starting kernel ...');
837 self.wait_for_console_pattern('systemd[1]: Set hostname ' +
838 'to <orangepipc>')
839 self.wait_for_console_pattern('Starting Load Kernel Modules...')
841 @skipUnless(os.getenv('AVOCADO_ALLOW_LARGE_STORAGE'), 'storage limited')
842 def test_arm_orangepi_uboot_netbsd9(self):
844 :avocado: tags=arch:arm
845 :avocado: tags=machine:orangepi-pc
846 :avocado: tags=device:sd
848 # This test download a 304MB compressed image and expand it to 2GB
849 deb_url = ('http://snapshot.debian.org/archive/debian/'
850 '20200108T145233Z/pool/main/u/u-boot/'
851 'u-boot-sunxi_2020.01%2Bdfsg-1_armhf.deb')
852 deb_hash = 'f67f404a80753ca3d1258f13e38f2b060e13db99'
853 deb_path = self.fetch_asset(deb_url, asset_hash=deb_hash)
854 # We use the common OrangePi PC 'plus' build of U-Boot for our secondary
855 # program loader (SPL). We will then set the path to the more specific
856 # OrangePi "PC" device tree blob with 'setenv fdtfile' in U-Boot prompt,
857 # before to boot NetBSD.
858 uboot_path = '/usr/lib/u-boot/orangepi_plus/u-boot-sunxi-with-spl.bin'
859 uboot_path = self.extract_from_deb(deb_path, uboot_path)
860 image_url = ('https://cdn.netbsd.org/pub/NetBSD/NetBSD-9.0/'
861 'evbarm-earmv7hf/binary/gzimg/armv7.img.gz')
862 image_hash = '2babb29d36d8360adcb39c09e31060945259917a'
863 image_path_gz = self.fetch_asset(image_url, asset_hash=image_hash)
864 image_path = os.path.join(self.workdir, 'armv7.img')
865 archive.gzip_uncompress(image_path_gz, image_path)
866 image_pow2ceil_expand(image_path)
867 image_drive_args = 'if=sd,format=raw,snapshot=on,file=' + image_path
869 # dd if=u-boot-sunxi-with-spl.bin of=armv7.img bs=1K seek=8 conv=notrunc
870 with open(uboot_path, 'rb') as f_in:
871 with open(image_path, 'r+b') as f_out:
872 f_out.seek(8 * 1024)
873 shutil.copyfileobj(f_in, f_out)
875 self.vm.set_console()
876 self.vm.add_args('-nic', 'user',
877 '-drive', image_drive_args,
878 '-global', 'allwinner-rtc.base-year=2000',
879 '-no-reboot')
880 self.vm.launch()
881 wait_for_console_pattern(self, 'U-Boot 2020.01+dfsg-1')
882 interrupt_interactive_console_until_pattern(self,
883 'Hit any key to stop autoboot:',
884 'switch to partitions #0, OK')
886 exec_command_and_wait_for_pattern(self, '', '=>')
887 cmd = 'setenv bootargs root=ld0a'
888 exec_command_and_wait_for_pattern(self, cmd, '=>')
889 cmd = 'setenv kernel netbsd-GENERIC.ub'
890 exec_command_and_wait_for_pattern(self, cmd, '=>')
891 cmd = 'setenv fdtfile dtb/sun8i-h3-orangepi-pc.dtb'
892 exec_command_and_wait_for_pattern(self, cmd, '=>')
893 cmd = ("setenv bootcmd 'fatload mmc 0:1 ${kernel_addr_r} ${kernel}; "
894 "fatload mmc 0:1 ${fdt_addr_r} ${fdtfile}; "
895 "fdt addr ${fdt_addr_r}; "
896 "bootm ${kernel_addr_r} - ${fdt_addr_r}'")
897 exec_command_and_wait_for_pattern(self, cmd, '=>')
899 exec_command_and_wait_for_pattern(self, 'boot',
900 'Booting kernel from Legacy Image')
901 wait_for_console_pattern(self, 'Starting kernel ...')
902 wait_for_console_pattern(self, 'NetBSD 9.0 (GENERIC)')
903 # Wait for user-space
904 wait_for_console_pattern(self, 'Starting root file system check')
906 def test_aarch64_raspi3_atf(self):
908 :avocado: tags=arch:aarch64
909 :avocado: tags=machine:raspi3
910 :avocado: tags=cpu:cortex-a53
911 :avocado: tags=device:pl011
912 :avocado: tags=atf
914 zip_url = ('https://github.com/pbatard/RPi3/releases/download/'
915 'v1.15/RPi3_UEFI_Firmware_v1.15.zip')
916 zip_hash = '74b3bd0de92683cadb14e008a7575e1d0c3cafb9'
917 zip_path = self.fetch_asset(zip_url, asset_hash=zip_hash)
919 archive.extract(zip_path, self.workdir)
920 efi_fd = os.path.join(self.workdir, 'RPI_EFI.fd')
922 self.vm.set_console(console_index=1)
923 self.vm.add_args('-nodefaults',
924 '-device', 'loader,file=%s,force-raw=true' % efi_fd)
925 self.vm.launch()
926 self.wait_for_console_pattern('version UEFI Firmware v1.15')
928 def test_s390x_s390_ccw_virtio(self):
930 :avocado: tags=arch:s390x
931 :avocado: tags=machine:s390-ccw-virtio
933 kernel_url = ('https://archives.fedoraproject.org/pub/archive'
934 '/fedora-secondary/releases/29/Everything/s390x/os/images'
935 '/kernel.img')
936 kernel_hash = 'e8e8439103ef8053418ef062644ffd46a7919313'
937 kernel_path = self.fetch_asset(kernel_url, asset_hash=kernel_hash)
939 self.vm.set_console()
940 kernel_command_line = self.KERNEL_COMMON_COMMAND_LINE + 'console=sclp0'
941 self.vm.add_args('-nodefaults',
942 '-kernel', kernel_path,
943 '-append', kernel_command_line)
944 self.vm.launch()
945 console_pattern = 'Kernel command line: %s' % kernel_command_line
946 self.wait_for_console_pattern(console_pattern)
948 def test_alpha_clipper(self):
950 :avocado: tags=arch:alpha
951 :avocado: tags=machine:clipper
953 kernel_url = ('http://archive.debian.org/debian/dists/lenny/main/'
954 'installer-alpha/20090123lenny10/images/cdrom/vmlinuz')
955 kernel_hash = '3a943149335529e2ed3e74d0d787b85fb5671ba3'
956 kernel_path = self.fetch_asset(kernel_url, asset_hash=kernel_hash)
958 uncompressed_kernel = archive.uncompress(kernel_path, self.workdir)
960 self.vm.set_console()
961 kernel_command_line = self.KERNEL_COMMON_COMMAND_LINE + 'console=ttyS0'
962 self.vm.add_args('-nodefaults',
963 '-kernel', uncompressed_kernel,
964 '-append', kernel_command_line)
965 self.vm.launch()
966 console_pattern = 'Kernel command line: %s' % kernel_command_line
967 self.wait_for_console_pattern(console_pattern)
969 def test_m68k_q800(self):
971 :avocado: tags=arch:m68k
972 :avocado: tags=machine:q800
974 deb_url = ('https://snapshot.debian.org/archive/debian-ports'
975 '/20191021T083923Z/pool-m68k/main'
976 '/l/linux/kernel-image-5.3.0-1-m68k-di_5.3.7-1_m68k.udeb')
977 deb_hash = '044954bb9be4160a3ce81f8bc1b5e856b75cccd1'
978 deb_path = self.fetch_asset(deb_url, asset_hash=deb_hash)
979 kernel_path = self.extract_from_deb(deb_path,
980 '/boot/vmlinux-5.3.0-1-m68k')
982 self.vm.set_console()
983 kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE +
984 'console=ttyS0 vga=off')
985 self.vm.add_args('-kernel', kernel_path,
986 '-append', kernel_command_line)
987 self.vm.launch()
988 console_pattern = 'Kernel command line: %s' % kernel_command_line
989 self.wait_for_console_pattern(console_pattern)
990 console_pattern = 'No filesystem could mount root'
991 self.wait_for_console_pattern(console_pattern)
993 def do_test_advcal_2018(self, day, tar_hash, kernel_name, console=0):
994 tar_url = ('https://www.qemu-advent-calendar.org'
995 '/2018/download/day' + day + '.tar.xz')
996 file_path = self.fetch_asset(tar_url, asset_hash=tar_hash)
997 archive.extract(file_path, self.workdir)
998 self.vm.set_console(console_index=console)
999 self.vm.add_args('-kernel',
1000 self.workdir + '/day' + day + '/' + kernel_name)
1001 self.vm.launch()
1002 self.wait_for_console_pattern('QEMU advent calendar')
1004 def test_arm_vexpressa9(self):
1006 :avocado: tags=arch:arm
1007 :avocado: tags=machine:vexpress-a9
1009 tar_hash = '32b7677ce8b6f1471fb0059865f451169934245b'
1010 self.vm.add_args('-dtb', self.workdir + '/day16/vexpress-v2p-ca9.dtb')
1011 self.do_test_advcal_2018('16', tar_hash, 'winter.zImage')
1013 def test_m68k_mcf5208evb(self):
1015 :avocado: tags=arch:m68k
1016 :avocado: tags=machine:mcf5208evb
1018 tar_hash = 'ac688fd00561a2b6ce1359f9ff6aa2b98c9a570c'
1019 self.do_test_advcal_2018('07', tar_hash, 'sanity-clause.elf')
1021 def test_or1k_sim(self):
1023 :avocado: tags=arch:or1k
1024 :avocado: tags=machine:or1k-sim
1026 tar_hash = '20334cdaf386108c530ff0badaecc955693027dd'
1027 self.do_test_advcal_2018('20', tar_hash, 'vmlinux')
1029 def test_nios2_10m50(self):
1031 :avocado: tags=arch:nios2
1032 :avocado: tags=machine:10m50-ghrd
1034 tar_hash = 'e4251141726c412ac0407c5a6bceefbbff018918'
1035 self.do_test_advcal_2018('14', tar_hash, 'vmlinux.elf')
1037 def test_ppc64_e500(self):
1039 :avocado: tags=arch:ppc64
1040 :avocado: tags=machine:ppce500
1042 tar_hash = '6951d86d644b302898da2fd701739c9406527fe1'
1043 self.vm.add_args('-cpu', 'e5500')
1044 self.do_test_advcal_2018('19', tar_hash, 'uImage')
1046 def test_ppc_g3beige(self):
1048 :avocado: tags=arch:ppc
1049 :avocado: tags=machine:g3beige
1051 tar_hash = 'e0b872a5eb8fdc5bed19bd43ffe863900ebcedfc'
1052 self.vm.add_args('-M', 'graphics=off')
1053 self.do_test_advcal_2018('15', tar_hash, 'invaders.elf')
1055 def test_ppc_mac99(self):
1057 :avocado: tags=arch:ppc
1058 :avocado: tags=machine:mac99
1060 tar_hash = 'e0b872a5eb8fdc5bed19bd43ffe863900ebcedfc'
1061 self.vm.add_args('-M', 'graphics=off')
1062 self.do_test_advcal_2018('15', tar_hash, 'invaders.elf')
1064 def test_sh4_r2d(self):
1066 :avocado: tags=arch:sh4
1067 :avocado: tags=machine:r2d
1069 tar_hash = 'fe06a4fd8ccbf2e27928d64472939d47829d4c7e'
1070 self.vm.add_args('-append', 'console=ttySC1')
1071 self.do_test_advcal_2018('09', tar_hash, 'zImage', console=1)
1073 def test_sparc_ss20(self):
1075 :avocado: tags=arch:sparc
1076 :avocado: tags=machine:SS-20
1078 tar_hash = 'b18550d5d61c7615d989a06edace051017726a9f'
1079 self.do_test_advcal_2018('11', tar_hash, 'zImage.elf')
1081 def test_xtensa_lx60(self):
1083 :avocado: tags=arch:xtensa
1084 :avocado: tags=machine:lx60
1086 tar_hash = '49e88d9933742f0164b60839886c9739cb7a0d34'
1087 self.vm.add_args('-cpu', 'dc233c')
1088 self.do_test_advcal_2018('02', tar_hash, 'santas-sleigh-ride.elf')