Bug 691779 - Hide devicemanagerADB pull interfering with reftest output. r=jmaher

This commit is contained in:
Benoit Girard 2011-10-11 10:31:05 -04:00
Родитель 7dda89bb11
Коммит 9199395844
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -285,8 +285,10 @@ class DeviceManagerADB(DeviceManager):
# success: output of pullfile, string
# failure: None
def getFile(self, remoteFile, localFile = 'tmpfile_dm_adb'):
# TODO: add debug flags and allow for printing stdout
# self.runCmd(["pull", remoteFile, localFile])
try:
self.checkCmd(["pull", remoteFile, localFile])
self.runCmd(["pull", remoteFile, localFile]).stdout.read()
f = open(localFile)
ret = f.read()
f.close()