author | Geoff Brown <gbrown@mozilla.com> |
Mon, 04 May 2015 10:32:46 -0600 | |
changeset 242288 | 75514dac86e93d48c78f871943680870b46b3d59 |
parent 242287 | 57c6c589cfa1115645df5d0bad32e11b1f5a3302 |
child 242289 | 680013c9718fd62d17f0c8cbf91417c80ff7a118 |
push id | 28689 |
push user | cbook@mozilla.com |
push date | Tue, 05 May 2015 10:05:09 +0000 |
treeherder | mozilla-central@754579ec0e68 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | ryanvm |
bugs | 1156425 |
milestone | 40.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/build/mobile/remoteautomation.py +++ b/build/mobile/remoteautomation.py @@ -274,18 +274,19 @@ class RemoteAutomation(Automation): self.proc = stdout else: raise Exception("unable to launch process") self.procName = cmd[0].split('/')[-1] if cmd[0] == 'am' and cmd[1] == "instrument": self.procName = app print "Robocop process name: "+self.procName - # Setting timeout at 1 hour since on a remote device this takes much longer - self.timeout = 3600 + # Setting timeout at 1 hour since on a remote device this takes much longer. + # Temporarily increased to 75 minutes because no more chunks can be created. + self.timeout = 4500 # The benefit of the following sleep is unclear; it was formerly 15 seconds time.sleep(1) # Used to buffer log messages until we meet a line break self.logBuffer = "" @property def pid(self):