Skip to content

Commit 3eff42b

Browse files
thefourtheyejasnell
authored andcommittedMar 7, 2016
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 810aa9f commit 3eff42b

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed
 

‎tools/cpplint.py

-3
Original file line numberDiff line numberDiff line change
@@ -3025,9 +3025,6 @@ def ProcessFile(filename, vlevel):
30253025
'One or more unexpected \\r (^M) found;'
30263026
'better to use only a \\n')
30273027

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

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

0 commit comments

Comments
 (0)
Please sign in to comment.