From: Paul F. <pa...@so...> - 2025-05-12 19:42:44
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=21a098eadf71c4ce75e2b288a23835f403b065ae commit 21a098eadf71c4ce75e2b288a23835f403b065ae Author: Paul Floyd <pj...@wa...> Date: Mon May 12 21:38:46 2025 +0200 illumos regtest: mask a leak in memcheck/tests/realloc_size_zero_xml There's what looks like a libc printf buffer possible leak in this test on illumos. With xml output leak reporting is hard coded to on. So to avoid this extra error add --show-possibly-lost=no Maybe this should be suppressed. I haven't managed to reproduce it without xml and outside of perl regtest. Diff: --- memcheck/tests/realloc_size_zero_xml.vgtest | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/memcheck/tests/realloc_size_zero_xml.vgtest b/memcheck/tests/realloc_size_zero_xml.vgtest index 1b88b523bc..226289cb0a 100644 --- a/memcheck/tests/realloc_size_zero_xml.vgtest +++ b/memcheck/tests/realloc_size_zero_xml.vgtest @@ -1,5 +1,5 @@ prog: realloc_size_zero -vgopts: -q --xml=yes --xml-fd=2 --log-file=/dev/null +vgopts: -q --xml=yes --xml-fd=2 --log-file=/dev/null --show-possibly-lost=no stderr_filter: filter_xml |