From b7384c89e2685cec1b6761c918ec7d91e8ae3af8 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Mon, 15 Apr 2019 16:53:10 -0400 Subject: [PATCH] [fuzzing] Run valgrind with --leak-check=full --- test/fuzzing/run-shape-fuzzer-tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fuzzing/run-shape-fuzzer-tests.py b/test/fuzzing/run-shape-fuzzer-tests.py index 54fddfbe9..90ed509c7 100755 --- a/test/fuzzing/run-shape-fuzzer-tests.py +++ b/test/fuzzing/run-shape-fuzzer-tests.py @@ -88,7 +88,7 @@ for file in os.listdir (parent_path): failed = True if valgrind: - text, returncode = cmd ([valgrind, '--error-exitcode=1', hb_shape_fuzzer, path]) + text, returncode = cmd ([valgrind, '--error-exitcode=1', '--leak-check=full', hb_shape_fuzzer, path]) if returncode: print (text) print ('failure on %s' % file)