From: Paul F. <pa...@so...> - 2025-02-15 15:26:36
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=01a6ea5b031e48f35748a3df4e37bdaa25d61264 commit 01a6ea5b031e48f35748a3df4e37bdaa25d61264 Author: Paul Floyd <pj...@wa...> Date: Sat Feb 15 16:25:23 2025 +0100 Illumos regtest: add a filter for crt start Was causing a failure in one Massif test Diff: --- tests/filter_libc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/filter_libc b/tests/filter_libc index 160f1a4b4d..d3c875d90f 100755 --- a/tests/filter_libc +++ b/tests/filter_libc @@ -26,6 +26,9 @@ while (<>) s#_start1 \(src/lib/csu/i386/crt1_c.c.*#(below main)#; s#__libc_start1 \(in /...libc...\)#(below main)#; + # on Illumos + s#_start_crt \(in .*#(below main)#; + # filter out the exact libc-start.c:### line number. (ppc64*) s/\(libc-start.c:[0-9]*\)$/(in \/...libc...)/; |