Lines Matching full:errors
50 errors: Number of errors
56 fields = ['ok', 'problems', 'errors', 'warnings', 'checks', 'lines',
60 result.errors, result.warning, result.checks = 0, 0, 0
70 # total: 0 errors, 0 warnings, 159 lines checked
72 # total: 0 errors, 2 warnings, 7 checks, 473 lines checked
73 re_stats = re.compile('total: (\\d+) errors, (\d+) warnings, (\d+)')
74 re_stats_full = re.compile('total: (\\d+) errors, (\d+) warnings, (\d+)'
95 result.errors = int(match.group(1))
150 error_count += result.errors
153 print('%d errors, %d warnings, %d checks for %s:' % (result.errors,
155 if (len(result.problems) != result.errors + result.warnings +