Skip to content

Commit 048c0f4

Browse files
thefourtheyeFishrock123
authored andcommitted
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 7965c89 commit 048c0f4

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
@@ -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)