Merge pull request #6092 from heliclei/fix-autotest

Fix autotest infinite loop
This commit is contained in:
minggo 2014-04-01 16:15:09 +08:00
Родитель 53984e1712 f04ca0069c
Коммит 5325cdbb38
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -31,8 +31,9 @@ def autotest(type):
soc.send('autotest run\r\n')
while True:
buf = soc.recv(64)
print buf
data = soc.recv(1024)
print data
if not data: break
print 'test end and close socket.'
soc.close()