1*** Variables ***
2${UART}                       sysbus.uart
3${SCRIPT_UBOOT}               @scripts/single-node/i386.resc
4${SCRIPT_ZEPHYR}              @scripts/single-node/i386_zephyr.resc
5
6*** Test Cases ***
7Should Run U-Boot
8    Execute Command           include ${SCRIPT_UBOOT}
9    Create Terminal Tester    sysbus.uart
10    Wait For Prompt On Uart   boot >
11
12Should Run Zephyr hello_world Sample
13    Execute Command           include ${SCRIPT_ZEPHYR}
14    Create Terminal Tester    sysbus.uart
15    Wait For Line On Uart     Hello World! qemu_x86
16
17