mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-18 02:53:52 +01:00
15 lines
291 B
Python
Executable File
15 lines
291 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
from testrunner import run
|
|
|
|
|
|
def testfunc(child):
|
|
child.expect("All up, running the shell now")
|
|
child.sendline("ifconfig")
|
|
child.expect(r"Iface\s+(\d+)\s+HWaddr:")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(run(testfunc, timeout=1, echo=False))
|