Suppress any source filename in a "(below main)" line in a stack trace.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@5847
This commit is contained in:
Tom Hughes 2006-04-13 12:44:31 +00:00
parent bfbdafcaef
commit e09a583342

View File

@ -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;