From 01a6ea5b031e48f35748a3df4e37bdaa25d61264 Mon Sep 17 00:00:00 2001 From: Paul Floyd Date: Sat, 15 Feb 2025 16:25:23 +0100 Subject: [PATCH] Illumos regtest: add a filter for crt start Was causing a failure in one Massif test --- tests/filter_libc | 3 +++ 1 file changed, 3 insertions(+) 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...)/; -- 2.47.2