From: Andrei Pavel Date: Mon, 17 Mar 2025 08:04:51 +0000 (+0200) Subject: [#3731] Fix valgrind X-Git-Tag: Kea-2.7.7~54 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d724fed33baff2ba1cf3a0dc3dd195dfe0d6199b;p=thirdparty%2Fkea.git [#3731] Fix valgrind --- diff --git a/meson.build b/meson.build index f5faecd8ad..ce3909731a 100644 --- a/meson.build +++ b/meson.build @@ -786,7 +786,7 @@ if valgrind.found() '--num-callers=64', '--quiet', '--show-leak-kinds=all', - '--suppressions=src/valgrind.supp', + f'--suppressions=@TOP_SOURCE_DIR@/src/valgrind.supp', '--xml=yes', '--xml-file=valgrind-results-%p.xml', ], @@ -803,7 +803,7 @@ if valgrind.found() '--num-callers=64', '--quiet', '--show-leak-kinds=all', - '--suppressions=src/valgrind.supp', + f'--suppressions=@TOP_SOURCE_DIR@/src/valgrind.supp', '--gen-suppressions=all', '--log-file=valgrind.supp', ], diff --git a/src/valgrind-suppressions.revisit b/src/valgrind-suppressions.revisit deleted file mode 100644 index 8b4a8c734a..0000000000 --- a/src/valgrind-suppressions.revisit +++ /dev/null @@ -1,17 +0,0 @@ -# Place temporary suppressions that we want to revisit in the future -# into this file. For permanent suppressions that we don't want to look -# at again, use valgrind-suppressions. -# -# Don't add any "obj:" lines in suppressions as these are likely -# site-specific. Use "..." instead to match these. Look at the other -# suppressions as examples. -# -# In case you want to make sense of the following symbols, demangle them -# with a command like: c++filt < valgrind-suppressions.revisit - -############################################################################ -#### beginning of suppressions for existing issues that we want to fix. #### - - -####### end of suppressions for existing issues that we want to fix. ####### -############################################################################ diff --git a/src/valgrind-suppressions b/src/valgrind.supp similarity index 100% rename from src/valgrind-suppressions rename to src/valgrind.supp