Bug 926594 - Increase timeout for debug mochitests on B2G, r=ahal

This commit is contained in:
Jonathan Griffin 2013-10-18 12:47:35 -07:00
Родитель 5b4766e2b7
Коммит b1d68b5799
1 изменённых файлов: 7 добавлений и 4 удалений

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

@ -113,12 +113,15 @@ class B2GMochitest(MochitestUtilsMixin):
self.startWebSocketServer(options, None)
self.buildURLOptions(options, {'MOZ_HIDE_RESULTS_TABLE': '1'})
if options.timeout:
timeout = options.timeout + 30
elif options.debugger or not options.autorun:
if options.debugger or not options.autorun:
timeout = None
else:
timeout = 330.0 # default JS harness timeout is 300 seconds
if not options.timeout:
if mozinfo.info['debug']:
options.timeout = 420
else:
options.timeout = 300
timeout = options.timeout + 30.0
log.info("runtestsb2g.py | Running tests: start.")
status = 0