|
From: Paul F. <pa...@so...> - 2023-02-05 10:36:52
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=0eb7257254c55a9d9a28194986fa1efd0f96ad87 commit 0eb7257254c55a9d9a28194986fa1efd0f96ad87 Author: Paul Floyd <pj...@wa...> Date: Sun Feb 5 11:35:28 2023 +0100 Darwin regtest: add filtering for zone functions and realloc For test of C++17 new/delete variations Diff: --- memcheck/tests/filter_malloc_free | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/memcheck/tests/filter_malloc_free b/memcheck/tests/filter_malloc_free index 9d4c52559c..3927792ef0 100755 --- a/memcheck/tests/filter_malloc_free +++ b/memcheck/tests/filter_malloc_free @@ -2,5 +2,5 @@ ./filter_stderr "$@" | ./filter_allocs | -sed -e '/^malloc/d;/^free/d;/^calloc/d' +sed -e '/^malloc/d;/^free/d;/^calloc/d;/^zone/d;/^realloc/d' |