]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Illumos regtest: add a filter for crt start
authorPaul Floyd <pjfloyd@wanadoo.fr>
Sat, 15 Feb 2025 15:25:23 +0000 (16:25 +0100)
committerPaul Floyd <pjfloyd@wanadoo.fr>
Sat, 15 Feb 2025 15:25:23 +0000 (16:25 +0100)
Was causing a failure in one Massif test

tests/filter_libc

index 160f1a4b4d9be15cc861b97bf0f4f9d948f4d770..d3c875d90fe7b9ce2e4842b70f99e17441d03df8 100755 (executable)
@@ -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...)/;