mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-23 13:33:49 +01:00
* I used pexpect instead of when expect script was not working expect, since TCL confuses me * I deleted the thread_exit test since it was completely invalid
9 lines
135 B
Python
Executable File
9 lines
135 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
import pexpect
|
|
|
|
term = pexpect.spawn("make term")
|
|
|
|
term.expect('first thread\r\n')
|
|
term.expect('second thread\r\n')
|