mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 13:35:47 +00:00
Move tests from rosapps to rostests
svn path=/trunk/; revision=26010
This commit is contained in:
parent
3e98dbd825
commit
2199ae9003
262 changed files with 362 additions and 6 deletions
10
rostests/tests/oskittcp/cmd_oskit.py
Normal file
10
rostests/tests/oskittcp/cmd_oskit.py
Normal file
|
@ -0,0 +1,10 @@
|
|||
from socket import *
|
||||
import sys
|
||||
|
||||
s = socket(AF_INET,SOCK_DGRAM,0)
|
||||
s.connect(('localhost',5001))
|
||||
|
||||
while 1:
|
||||
sys.stdout.write('>> ')
|
||||
line = sys.stdin.readline()
|
||||
s.send('CMD ' + line)
|
Loading…
Add table
Add a link
Reference in a new issue