|
From: Paul F. <pa...@so...> - 2025-11-27 12:26:53
|
https://sourceware.org/cgit/valgrind/commit/?id=65165ae36f7048542c34813da20e2b608409900d commit 65165ae36f7048542c34813da20e2b608409900d Author: Paul Floyd <pj...@wa...> Date: Thu Nov 27 13:26:20 2025 +0100 Add missing massif filter file Diff: --- massif/tests/filter_ignore_fn | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/massif/tests/filter_ignore_fn b/massif/tests/filter_ignore_fn new file mode 100755 index 0000000000..2b524f08ba --- /dev/null +++ b/massif/tests/filter_ignore_fn @@ -0,0 +1,5 @@ +#! /bin/sh + +awk '/Massif arguments/{gsub(/ unsigned int/, "uint")}{print}' | +# unmangled C++ names can contain spaces so the above filter removes themn first +awk '{gsub(/ --ignore-fn=[^ ]*/, ""); print}' |