meson: add '--keep-debuginfo=yes' to the valgrind command line

ensures that we get debug symbols from modules printed correctly
This commit is contained in:
George Kiagiadakis 2021-06-09 15:43:08 +03:00
parent 7355215cf1
commit 606a9765d6

View file

@ -22,6 +22,7 @@ if valgrind.found()
'--leak-check=full',
'--gen-suppressions=all',
'--error-exitcode=3',
'--keep-debuginfo=yes',
],
env: valgrind_env,
timeout_multiplier: 2)