summaryrefslogtreecommitdiffstats
path: root/tools/valgrind/valgrind_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/valgrind/valgrind_test.py')
-rwxr-xr-xtools/valgrind/valgrind_test.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/valgrind/valgrind_test.py b/tools/valgrind/valgrind_test.py
index 8ab7c55..c279fca 100755
--- a/tools/valgrind/valgrind_test.py
+++ b/tools/valgrind/valgrind_test.py
@@ -70,8 +70,10 @@ class Valgrind():
Full execution command-line provided by subclassers via proc.'''
logging.info("starting execution...")
# note that self._args begins with the exe to be run
+ # TODO(erg): We probably want to get a version of valgrind that supports
+ # the "--track-origins" option...
proc = ["valgrind", "--smc-check=all", "--leak-check=full",
- "--track-origins=yes", "--num-callers=30"]
+ "--num-callers=30"]
# Either generate suppressions or load them.
if self._generate_suppressions: