|
From: Tom H. <th...@cy...> - 2005-02-13 15:47:44
|
CVS commit by thughes:
Supress any source file name for __libc_start_main.
M +2 -4 filter_libc 1.2
--- valgrind/tests/filter_libc #1.1:1.2
@@ -3,5 +3,6 @@
use strict;
-my @libc_symbols = qw(accept execve fcntl getsockname poll readv recvmsg
+my @libc_symbols = qw(__libc_start_main accept execve fcntl
+ getsockname poll readv recvmsg
socket socketpair syscall writev);
@@ -18,7 +19,4 @@
s/\(within \/.*libc.*\)$/(within \/...libc...)/;
-# s/\(\.\.\/sysdeps\/unix\/sysv\/linux\/.*\.c:\d+\)/(in \/...libc...)/;
-# s/__libc_(.*) \(.*\)$/__libc_$1 (...libc...)/;
-
s/($libc_symbols) \([a-z]+\.[cS]:\d+\)$/$1 (in \/...libc...)/;
|