summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2018-07-23 13:59:39 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2018-07-23 18:45:36 +1000
commit36d8155dbe4360e5dc7d3d11b6dd56f53394e8cb (patch)
treefd842fb7152ba7d466bb3075787b486712cbb534
parent9767fb30308b7e1055294ce9479c1b6b3c912672 (diff)
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 <peter.hutterer@who-t.net>
-rw-r--r--meson.build1
1 files changed, 1 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index fc5371bb..b3707161 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,