Regtest: add a filter for syscall -> in libc

This commit is contained in:
Paul Floyd
2025-12-25 09:22:48 +01:00
parent af48d83637
commit a1009028c4

View File

@@ -14,6 +14,9 @@ while (<>)
s/\(in \/.*(libc|libSystem|libsystem|libsocket|libsys).*\)$/(in \/...libc...)/;
s/\(within \/.*(libc|libSystem|libsystem|libsocket).*\)$/(within \/...libc...)/;
# From assembler functions
s/\(syscall-template.S:.*\)$/(in \/...libc...)/;
# Filter out dynamic loader
s/ \(in \/.*ld-.*so\)$//;