mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2026-01-01 01:41:18 +01:00
9 lines
158 B
Python
Executable File
9 lines
158 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
import pexpect
|
|
|
|
term = pexpect.spawn("make term")
|
|
|
|
term.expect('Start spawning\r\n')
|
|
term.expect('Thread creation successful aborted\r\n')
|