1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-26 06:53:52 +01:00

Merge pull request #12962 from fjmolinas/pr_sys_arduino_fix

tests/sys_arduino: fix test synchronization issues
This commit is contained in:
Alexandre Abadie 2020-01-15 12:18:21 +01:00 committed by GitHub
commit fcde7a1c0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,6 +11,9 @@ from testrunner import run
def testfunc(child):
# Wait for serial.begin() to complete
child.expect_exact("Hello Arduino!")
# 1 Basic read+write test on serial with error command
child.sendline("wrang")
child.expect_exact("UNK")