Bug 1027574 - Mozrunner should use logcat format 'time' not 'threadtime'; r=ahal

This commit is contained in:
Ed Morley 2014-07-04 15:04:16 +01:00
Родитель dab4089818
Коммит 4b5c1ec146
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -135,7 +135,7 @@ class Device(object):
if os.path.isfile(logcat_log):
self._rotate_log(logcat_log)
logcat_args = [self.app_ctx.adb, '-s', '%s' % serial,
'logcat', '-v', 'threadtime']
'logcat', '-v', 'time']
self.logcat_proc = ProcessHandler(logcat_args, logfile=logcat_log)
self.logcat_proc.run()