MAINTAINERS: Cover docs/igd-assign.txt in VFIO section
[qemu/ar7.git] / tests / acceptance / machine_avr6.py
blob6baf4e9c7f3c018a1c21d8290f461e49ad62ca5a
2 # QEMU AVR acceptance tests
4 # Copyright (c) 2019-2020 Michael Rolnik <mrolnik@gmail.com>
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 2 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
20 import time
22 from avocado_qemu import Test
24 class AVR6Machine(Test):
25 timeout = 5
27 def test_freertos(self):
28 """
29 :avocado: tags=arch:avr
30 :avocado: tags=machine:arduino-mega-2560-v3
31 """
32 """
33 https://github.com/seharris/qemu-avr-tests/raw/master/free-rtos/Demo/AVR_ATMega2560_GCC/demo.elf
34 constantly prints out 'ABCDEFGHIJKLMNOPQRSTUVWXABCDEFGHIJKLMNOPQRSTUVWX'
35 """
36 rom_url = ('https://github.com/seharris/qemu-avr-tests'
37 '/raw/36c3e67b8755dcf/free-rtos/Demo'
38 '/AVR_ATMega2560_GCC/demo.elf')
39 rom_hash = '7eb521f511ca8f2622e0a3c5e8dd686efbb911d4'
40 rom_path = self.fetch_asset(rom_url, asset_hash=rom_hash)
42 self.vm.add_args('-bios', rom_path)
43 self.vm.add_args('-nographic')
44 self.vm.launch()
46 time.sleep(2)
47 self.vm.shutdown()
49 self.assertIn('ABCDEFGHIJKLMNOPQRSTUVWXABCDEFGHIJKLMNOPQRSTUVWX',
50 self.vm.get_log())