Add a basic Robot Framework test suite utilizing the robot harness runnable in Renode. Signed-off-by: Michał Szprejda <mszprejda@antmicro.com> Signed-off-by: Mateusz Hołenko <mholenko@antmicro.com>
14 lines
429 B
Plaintext
14 lines
429 B
Plaintext
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
*** Settings ***
|
|
Resource ${KEYWORDS}
|
|
|
|
*** Test Cases ***
|
|
Should Read Version From Shell
|
|
# `Prepare Machine` keyword comes from $ZEPHYR_BASE/tests/robot/common.robot file, which is imported as a resource
|
|
Prepare Machine
|
|
Start Emulation
|
|
Wait For Prompt On Uart uart:~$
|
|
Write Line To Uart version
|
|
Wait For Line On Uart Zephyr version
|