Lines Matching full:warnings
17 """Outputs the warnings that are common to all builders.
19 Suppressed tests that are nonetheless passing are output as warnings
20 by vogar. Any tests that generate warnings in every builder are good
30 # The buildbot step to check for warnings
35 # Dict from builder+build_num combination to the list of warnings
37 warnings = collections.defaultdict(list)
72 # warnings summary
75 while not stdio[i].startswith('Warnings summary:'):
77 i += 1 # Ignore the "Warnings summary:" line
79 warnings['%s:%d' % (builder_name, build_num)].append(stdio[i])
83 print ' No warnings section found.'
85 # warnings. We seed it with an arbitrary starting point (which is fine
87 sharedwarnings = set(warnings.popitem()[1])
88 for warning_list in warnings.itervalues():
90 print 'Warnings shared across all builders:'