master
py 59 lines 2.38 KB
Raw
1 #!/usr/bin/env python3
2 #
3 # Functional test that boots a microblaze Linux kernel and checks the console
4 #
5 # Copyright (c) 2018, 2021 Red Hat, Inc.
6 #
7 # This work is licensed under the terms of the GNU GPL, version 2 or
8 # later. See the COPYING file in the top-level directory.
9
10 from qemu_test import exec_command_and_wait_for_pattern
11 from qemu_test import QemuSystemTest, Asset
12 from qemu_test import wait_for_console_pattern
13
14
15 class MicroblazeMachine(QemuSystemTest):
16
17 ASSET_IMAGE_BE = Asset(
18 ('https://qemu-advcal.gitlab.io/qac-best-of-multiarch/download/'
19 'day17.tar.xz'),
20 '3ba7439dfbea7af4876662c97f8e1f0cdad9231fc166e4861d17042489270057')
21
22 ASSET_IMAGE_LE = Asset(
23 ('http://www.qemu-advent-calendar.org/2023/download/day13.tar.gz'),
24 'b9b3d43c5dd79db88ada495cc6e0d1f591153fe41355e925d791fbf44de50c22')
25
26 def test_microblaze_s3adsp1800_big_endian(self):
27 self.set_machine('petalogix-s3adsp1800')
28 self.archive_extract(self.ASSET_IMAGE_BE)
29 self.vm.set_console()
30 self.vm.add_args('-kernel',
31 self.scratch_file('day17', 'ballerina.bin'))
32 self.vm.launch()
33 wait_for_console_pattern(self, 'This architecture does not have '
34 'kernel memory protection')
35 # Note:
36 # The kernel sometimes gets stuck after the "This architecture ..."
37 # message, that's why we don't test for a later string here. This
38 # needs some investigation by a microblaze wizard one day...
39
40 def test_microblaze_s3adsp1800_little_endian(self):
41 self.require_netdev('user')
42 self.set_machine('petalogix-s3adsp1800')
43 self.archive_extract(self.ASSET_IMAGE_LE)
44 self.vm.set_console()
45 self.vm.add_args('-kernel', self.scratch_file('day13', 'xmaton.bin'))
46 self.vm.add_args('-M', 'endianness=little')
47 tftproot = self.scratch_file('day13')
48 self.vm.add_args('-nic', f'user,tftp={tftproot}')
49 self.vm.launch()
50 wait_for_console_pattern(self, 'QEMU Advent Calendar 2023')
51 wait_for_console_pattern(self, 'buildroot login:')
52 exec_command_and_wait_for_pattern(self, 'root', '#')
53 exec_command_and_wait_for_pattern(self,
54 'tftp -g -r xmaton.png 10.0.2.2 ; md5sum xmaton.png',
55 '821cd3cab8efd16ad6ee5acc3642a8ea')
56
57
58 if __name__ == '__main__':
59 QemuSystemTest.main()