From a1009028c4a8851cfb1514cb350490db2749a478 Mon Sep 17 00:00:00 2001 From: Paul Floyd Date: Thu, 25 Dec 2025 09:22:48 +0100 Subject: [PATCH] Regtest: add a filter for syscall -> in libc --- tests/filter_libc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/filter_libc b/tests/filter_libc index d3c875d90..f3ee01626 100755 --- a/tests/filter_libc +++ b/tests/filter_libc @@ -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\)$//; -- 2.47.3