From 36d8155dbe4360e5dc7d3d11b6dd56f53394e8cb Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Mon, 23 Jul 2018 13:59:39 +1000 Subject: [PATCH] test: add --gen-suppressions=all to the valgrind run Because if we have a heisenbug that can't be reproduced on other machines, having the suppression output in the log can save a lot of time. Signed-off-by: Peter Hutterer --- meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/meson.build b/meson.build index fc5371b..b370716 100644 --- a/meson.build +++ b/meson.build @@ -866,6 +866,7 @@ if get_option('tests') add_test_setup('valgrind', exe_wrapper : [ valgrind, '--leak-check=full', + '--gen-suppressions=all', '--error-exitcode=3', '--suppressions=' + valgrind_suppressions_file ], env : valgrind_env, -- 2.7.4