Bug 1156425 - Allow Android test jobs to run for up to 75 minutes; r=ryanvm

This commit is contained in:
Geoff Brown 2015-05-04 10:32:46 -06:00
Родитель 8f916d8709
Коммит 51f4882b20
1 изменённых файлов: 3 добавлений и 2 удалений

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

@ -279,8 +279,9 @@ class RemoteAutomation(Automation):
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)