From e80df5d475b89761217a21e3acd683dab2a2c11e Mon Sep 17 00:00:00 2001 From: Paul Floyd Date: Tue, 26 Dec 2023 10:01:15 +0100 Subject: [PATCH] Darwin regtest: modify filter for massif Now only have 3 failing testcases with 2 causes - brk() not handled - not redirecting alloc functions in the main exe --- tests/filter_libc | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/filter_libc b/tests/filter_libc index bf035701c1..1bbf007571 100755 --- a/tests/filter_libc +++ b/tests/filter_libc @@ -20,6 +20,7 @@ while (<>) # Remove the filename -- on some platforms (eg. Linux) it will be in # libc, on some (eg. Darwin) it will be in the main executable. s/\(below main\) \(.+\)$/(below main)/; + s/start \(in \/usr\/lib\/system\/libdyld.dylib\)/(below main)/; # libc on x86 FreeBSD s#_start1 \(src/lib/csu/i386/crt1_c.c.*#(below main)#; -- 2.47.2