Skip to content

Commit 43d1cdf

Browse files
thefourtheyeMyles Borins
authored and
Myles Borins
committed
tools: reduce verbosity of cpplint
Every time `make test` is run, the cpplint prints the file it successfully linted. None of the other linters in the project does that. This patch simply removes the "Done processing" message from the cpplint. PR-URL: #5578 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Roman Reiss <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 42573f4 commit 43d1cdf

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

tools/cpplint.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3024,9 +3024,6 @@ def ProcessFile(filename, vlevel):
30243024
'One or more unexpected \\r (^M) found;'
30253025
'better to use only a \\n')
30263026

3027-
if not _cpplint_state.output_format == 'tap':
3028-
sys.stderr.write('Done processing %s\n' % filename)
3029-
30303027

30313028
def PrintUsage(message):
30323029
"""Prints a brief usage string and exits, optionally with an error message.

0 commit comments

Comments
 (0)