]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Darwin regtest: modify filter for massif
authorPaul Floyd <pjfloyd@wanadoo.fr>
Tue, 26 Dec 2023 09:01:15 +0000 (10:01 +0100)
committerPaul Floyd <pjfloyd@wanadoo.fr>
Tue, 26 Dec 2023 09:01:15 +0000 (10:01 +0100)
Now only have 3 failing testcases with 2 causes
- brk() not handled
- not redirecting alloc functions in the main exe

tests/filter_libc

index bf035701c153ee27400804795775015059207378..1bbf00757129111bd6530c17693e732722962537 100755 (executable)
@@ -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)#;