]> git.proxmox.com Git - mirror_qemu.git/blob - tests/acceptance/machine_sparc_leon3.py
Merge remote-tracking branch 'remotes/rth/tags/pull-sfp-20191030' into staging
[mirror_qemu.git] / tests / acceptance / machine_sparc_leon3.py
1 # Functional test that boots a Leon3 machine and checks its serial console.
2 #
3 # Copyright (c) Philippe Mathieu-Daudé <f4bug@amsat.org>
4 #
5 # This work is licensed under the terms of the GNU GPL, version 2 or
6 # later. See the COPYING file in the top-level directory.
7
8 from avocado_qemu import Test
9 from avocado_qemu import wait_for_console_pattern
10
11
12 class Leon3Machine(Test):
13
14 timeout = 60
15
16 def test_leon3_helenos_uimage(self):
17 """
18 :avocado: tags=arch:sparc
19 :avocado: tags=machine:leon3
20 :avocado: tags=binfmt:uimage
21 """
22 kernel_url = ('http://www.helenos.org/releases/'
23 'HelenOS-0.6.0-sparc32-leon3.bin')
24 kernel_hash = 'a88c9cfdb8430c66650e5290a08765f9bf049a30'
25 kernel_path = self.fetch_asset(kernel_url, asset_hash=kernel_hash)
26
27 self.vm.set_machine('leon3_generic')
28 self.vm.set_console()
29 self.vm.add_args('-kernel', kernel_path)
30
31 self.vm.launch()
32
33 wait_for_console_pattern(self, 'Copyright (c) 2001-2014 HelenOS project')
34 wait_for_console_pattern(self, 'Booting the kernel ...')