Files
xemu/tests/functional/avr/test_uno.py
Thomas Huth dc8f7a1bf7 tests/functional: Move avr tests into architecture specific folder
The tests/functional folder has become quite crowded, thus move the
avr tests into a target-specific subfolder.

Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Message-ID: <20250819112403.432587-9-thuth@redhat.com>
2025-08-27 09:46:55 +02:00

33 lines
816 B
Python
Executable File

#!/usr/bin/env python3
#
# QEMU AVR Arduino UNO functional test
#
# SPDX-License-Identifier: GPL-2.0-or-later
from qemu_test import QemuSystemTest, Asset, wait_for_console_pattern
class UnoMachine(QemuSystemTest):
ASSET_UNO = Asset(
('https://github.com/RahulRNandan/LED_Blink_AVR/raw/'
'c6d602cbb974a193/build/main.elf'),
'3009a4e2cf5c5b65142f538abdf66d4dc6bc6beab7e552fff9ae314583761b72')
def test_uno(self):
"""
The binary constantly prints out 'LED Blink'
"""
self.set_machine('arduino-uno')
rom_path = self.ASSET_UNO.fetch()
self.vm.add_args('-bios', rom_path)
self.vm.set_console()
self.vm.launch()
wait_for_console_pattern(self, 'LED Blink')
if __name__ == '__main__':
QemuSystemTest.main()