diff options
author | njn <njn@a5019735-40e9-0310-863c-91ae7b9d1cf9> | 2009-03-10 23:39:12 +0000 |
---|---|---|
committer | njn <njn@a5019735-40e9-0310-863c-91ae7b9d1cf9> | 2009-03-10 23:39:12 +0000 |
commit | 251a5b91097f4c10e8e9db2d55b5ec0fa2afc99c (patch) | |
tree | e834e09c39a61c8db7686af3380e7cdd36a2f9e5 /tests | |
parent | 402c1a1c1dd72673a2adcfd5bded97180507a727 (diff) |
Test fixes for systems that have debug info installed for libc and
libpthread.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@9353 a5019735-40e9-0310-863c-91ae7b9d1cf9
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/filter_libc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/filter_libc b/tests/filter_libc index 377cdc60..a89fb891 100755 --- a/tests/filter_libc +++ b/tests/filter_libc @@ -37,6 +37,10 @@ while (<>) s/(at.*)__builtin_vec_delete/$1...operator delete[].../; s/(at.*)operator delete\[\]\(void\*\)/$1...operator delete[].../; + # Tidy up in cases where glibc (+ libdl + libpthread + ld) have + # been built with debugging information, hence source locs are present. + s/\((exit|_exit|brk|sbrk).c:[0-9]*\)/(in \/...libc...)/; + print; } |