From e5005114905d5df694980c223bb4e6f3a6d18731 Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Wed, 19 Jan 2022 15:04:52 -0800 Subject: [PATCH] test-runner: set --show-leak-kinds=all This enables leak checks starting in main() which were previously ignored. --- tools/test-runner | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/test-runner b/tools/test-runner index c35466c1..7176deaf 100755 --- a/tools/test-runner +++ b/tools/test-runner @@ -673,6 +673,7 @@ class Namespace: if self.args.valgrind: args.extend(['valgrind', '--leak-check=full', '--track-origins=yes', + '--show-leak-kinds=all', '--log-file=/tmp/valgrind.log.%p']) args.extend(['iwd', '-p', iwd_radios, '-E'])