Bug 776541 - keep socket open after devicemanagerSUT push command; r=wlach

This commit is contained in:
Geoff Brown 2012-07-23 19:56:53 -06:00
parent d9801ef36c
commit 30a40f18d5

View File

@ -102,13 +102,11 @@ class DeviceManagerSUT(DeviceManager):
def _shouldCmdCloseSocket(self, cmd):
""" Some commands need to close the socket after they are sent:
* push
* rebt
* uninst
* quit
"""
socketClosingCmds = [re.compile('^push .*$'),
re.compile('^quit.*'),
socketClosingCmds = [re.compile('^quit.*'),
re.compile('^rebt.*'),
re.compile('^uninst .*$')]