summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorSakthipriyan Vairamani <thechargingvolcano@gmail.com>2016-03-06 19:35:42 +0530
committerJames M Snell <jasnell@gmail.com>2016-03-07 11:16:14 -0800
commit3eff42bbca531873905ef4478e8d6ec9a7485d3a (patch)
treec3cb3a5dcc835196b5381f78bcce7c456addf3ad /tools
parent810aa9f6c3bba239724ccb0539ab0f95c55dc0ef (diff)
downloadandroid-node-v8-3eff42bbca531873905ef4478e8d6ec9a7485d3a.tar.gz
android-node-v8-3eff42bbca531873905ef4478e8d6ec9a7485d3a.tar.bz2
android-node-v8-3eff42bbca531873905ef4478e8d6ec9a7485d3a.zip
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: 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>
Diffstat (limited to 'tools')
-rw-r--r--tools/cpplint.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/tools/cpplint.py b/tools/cpplint.py
index 98a3986308..a66c1cb193 100644
--- a/tools/cpplint.py
+++ b/tools/cpplint.py
@@ -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.