mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-26 15:03:53 +01:00
15 lines
263 B
Python
Executable File
15 lines
263 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
from testrunner import run
|
|
|
|
|
|
def testfunc(child):
|
|
child.expect_exact('Hello RIOT!')
|
|
child.expect_exact('42')
|
|
child.expect_exact('/nvm0/script.sh:6: error -7')
|
|
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(run(testfunc))
|