diff options
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; } |