Home | History | Annotate | Download | only in port

Lines Matching refs:error_line

347     def _check_for_driver_crash(self, error_line):
348 if error_line == "#CRASHED\n":
353 elif (error_line.startswith("#CRASHED - ")
354 or error_line.startswith("#PROCESS UNRESPONSIVE - ")):
356 match = re.match('#(?:CRASHED|PROCESS UNRESPONSIVE) - (\S+)', error_line)
358 match = re.search('pid (\d+)', error_line)
362 _log.debug('%s crash, pid = %s, error_line = %s' % (self._crashed_process_name, str(pid), error_line))
363 if error_line.startswith("#PROCESS UNRESPONSIVE - "):
367 self.error_from_test += error_line
371 def _check_for_leak(self, error_line):
372 if error_line.startswith("#LEAK - "):
374 match = re.match('#LEAK - (\S+) pid (\d+) (.+)\n', error_line)