Skip to content

Commit

Permalink
tools: reduce verbosity of cpplint
Browse files Browse the repository at this point in the history
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 <info@bnoordhuis.nl>
Reviewed-By: Roman Reiss <me@silverwind.io>
Reviewed-By: Michaël Zasso <mic.besace@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
thefourtheye authored and Fishrock123 committed Mar 8, 2016
1 parent 7965c89 commit 048c0f4
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tools/cpplint.py
Original file line number Diff line number Diff line change
Expand Up @@ -3025,9 +3025,6 @@ def ProcessFile(filename, vlevel):
'One or more unexpected \\r (^M) found;'
'better to use only a \\n')

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


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

0 comments on commit 048c0f4

Please sign in to comment.