From 0a0c8a7311b16bc60eee64d9ba04da929cd2d667 Mon Sep 17 00:00:00 2001 From: Anna Henningsen Date: Thu, 15 Mar 2018 21:39:57 +0100 Subject: [PATCH] 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 Reviewed-By: James M Snell --- tools/run-valgrind.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tools/run-valgrind.py b/tools/run-valgrind.py index ae1a3194cac..cad3e7ec695 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: