mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
9 lines
154 B
Python
9 lines
154 B
Python
import pexpect
|
|
|
|
p = pexpect.spawn(["login"])
|
|
p.expect("login:")
|
|
p.sendline("wrong")
|
|
p.expect("Password:")
|
|
p.sendline("wrong")
|
|
p.expect("Login incorrect")
|