From: Paul Floyd Date: Sat, 15 Feb 2025 15:25:23 +0000 (+0100) Subject: Illumos regtest: add a filter for crt start X-Git-Tag: VALGRIND_3_25_0~142 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=01a6ea5b031e48f35748a3df4e37bdaa25d61264;p=thirdparty%2Fvalgrind.git Illumos regtest: add a filter for crt start Was causing a failure in one Massif test --- diff --git a/tests/filter_libc b/tests/filter_libc index 160f1a4b4..d3c875d90 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...)/;