summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorAnna Henningsen <anna@addaleax.net>2018-03-15 21:39:57 +0100
committerAnna Henningsen <anna@addaleax.net>2018-05-10 14:15:17 +0200
commit0a0c8a7311b16bc60eee64d9ba04da929cd2d667 (patch)
treeea9fcd26fc9b2ae435894fc600e172851f47d33d /tools
parentbcb324c3ffd74147041cf892a0b2840aa340c248 (diff)
downloadandroid-node-v8-0a0c8a7311b16bc60eee64d9ba04da929cd2d667.tar.gz
android-node-v8-0a0c8a7311b16bc60eee64d9ba04da929cd2d667.tar.bz2
android-node-v8-0a0c8a7311b16bc60eee64d9ba04da929cd2d667.zip
tools: remove `--quiet` from run-valgrind.py
This should no longer be an issue, now that we clean up resources when exiting. PR-URL: https://github.com/nodejs/node/pull/19377 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/run-valgrind.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/tools/run-valgrind.py b/tools/run-valgrind.py
index ae1a3194ca..cad3e7ec69 100755
--- a/tools/run-valgrind.py
+++ b/tools/run-valgrind.py
@@ -37,9 +37,6 @@ VALGRIND_ARGUMENTS = [
'valgrind',
'--error-exitcode=1',
'--smc-check=all',
- # Node.js does not clean up on exit so don't complain about
- # memory leaks but do complain about invalid memory access.
- '--quiet',
]
if len(sys.argv) < 2: