tools: reduce verbosity of cpplint
authorSakthipriyan Vairamani <thechargingvolcano@gmail.com>
Sun, 6 Mar 2016 14:05:42 +0000 (19:35 +0530)
committerMyles Borins <mborins@us.ibm.com>
Mon, 21 Mar 2016 20:07:02 +0000 (13:07 -0700)
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: https://github.com/nodejs/node/pull/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>
tools/cpplint.py

index 3019395..a120fe7 100644 (file)
@@ -3024,9 +3024,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.