Lines Matching full:errors
51 errors: Number of errors
57 fields = ['ok', 'problems', 'errors', 'warnings', 'checks', 'lines',
61 result.errors, result.warning, result.checks = 0, 0, 0
71 # total: 0 errors, 0 warnings, 159 lines checked
73 # total: 0 errors, 2 warnings, 7 checks, 473 lines checked
74 re_stats = re.compile('total: (\\d+) errors, (\d+) warnings, (\d+)')
75 re_stats_full = re.compile('total: (\\d+) errors, (\d+) warnings, (\d+)'
96 result.errors = int(match.group(1))
151 error_count += result.errors
154 print('%d errors, %d warnings, %d checks for %s:' % (result.errors,
156 if (len(result.problems) != result.errors + result.warnings +