From e09a5833423d162afab6e09b0e2653e7cdbaa0d3 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Thu, 13 Apr 2006 12:44:31 +0000 Subject: [PATCH] Suppress any source filename in a "(below main)" line in a stack trace. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@5847 --- tests/filter_libc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/filter_libc b/tests/filter_libc index bcb83091af..67aa0cabe3 100755 --- a/tests/filter_libc +++ b/tests/filter_libc @@ -18,6 +18,8 @@ while (<>) s/\(in \/.*libc.*\)$/(in \/...libc...)/; s/\(within \/.*libc.*\)$/(within \/...libc...)/; + s/\(below main\) \(.+\.[cS]:\d+\)$/(below main) (in \/...libc...)/; + s/($libc_symbols) \(.+\.[cS]:\d+\)$/$1 (in \/...libc...)/; print; -- 2.47.2