Bug 783132 - bump mozprocess dep and add call to processOutput, r=ahal, DONTBUILD because NPOTB

This commit is contained in:
Jonathan Griffin 2012-08-16 10:59:47 -07:00
parent c62a48cb54
commit e0b4eafdf0
2 changed files with 3 additions and 1 deletions

View File

@ -286,6 +286,7 @@ class Emulator(object):
def _save_logcat_proc(self, filename, cmd):
self.logcat_proc = LogcatProc(filename, cmd)
self.logcat_proc.run()
self.logcat_proc.processOutput()
self.logcat_proc.waitForFinish()
self.logcat_proc = None

View File

@ -11,7 +11,8 @@ except (OSError, IOError):
description = ''
# dependencies
deps = ['manifestdestiny', 'mozhttpd >= 0.3', 'mozrunner', 'datazilla == 0.2.1']
deps = ['manifestdestiny', 'mozhttpd >= 0.3',
'mozprocess == 0.5', 'mozrunner == 5.10', 'datazilla == 0.2.1']
setup(name='marionette',
version=version,