Home | History | Annotate | Download | only in site_utils

Lines Matching refs:crashes

57 # List of crashes which are okay to ignore. This list should almost always be
78 @param whitelist_chrome_crashes: Treat Chrome crashes as non-fatal.
153 """Parses status_raw file for crashes.
155 Saves crash details if crashes are discovered. If a whitelist is
156 present, only records whitelisted crashes.
164 crashes = []
179 crashes.append('%s %s' % match.groups())
180 return crashes
365 'crashes': self._CollectCrashes(status_raw),
431 crashes, error_msg, perf keyvals [optional], info [optional].
603 crashes = {}
641 if result['crashes']:
642 for crash in result['crashes']:
643 if not crash in crashes:
644 crashes[crash] = set([])
645 crashes[crash].add(testdir)
661 if crashes:
663 'Crashes detected during testing:')
666 for crash_name, crashed_tests in sorted(crashes.iteritems()):
672 print ('Total unique crashes: ' +
673 self._color.Color(self._color.BOLD, str(len(crashes))))
687 self._options.crash_detection and d['crashes']):
701 help='Don\'t report crashes or error out when detected')
728 help='Treat Chrome crashes as non-fatal.')