1 2*** Keywords *** 3Create Machine 4 Execute Command mach create 5 Execute Command machine LoadPlatformDescription @platforms/cpus/miv.repl 6 7 8*** Test Cases *** 9Should Open Host UART Terminal 10 [Tags] skip_windows non_critical 11 ${pty_link}= Allocate Temporary File 12 Create Machine 13 # We need forceCreate because Allocate Temporary File creates a file which our 14 # symlink needs to overwrite. 15 Execute Command emulation CreateUartPtyTerminal "tmp" "${pty_link}" true 16 17