|
From: <sv...@va...> - 2013-10-07 20:57:58
|
Author: florian
Date: Mon Oct 7 20:57:51 2013
New Revision: 13626
Log:
Filter out the dynamic linker from back traces.
Patch by Maran Pakkirisamy (ma...@li...).
Modified:
trunk/tests/filter_libc
Modified: trunk/tests/filter_libc
==============================================================================
--- trunk/tests/filter_libc (original)
+++ trunk/tests/filter_libc Mon Oct 7 20:57:51 2013
@@ -13,6 +13,9 @@
s/\(in \/.*(libc|libSystem).*\)$/(in \/...libc...)/;
s/\(within \/.*(libc|libSystem).*\)$/(within \/...libc...)/;
+ # Filter out dynamic loader
+ s/\(in \/.*ld-.*so\)$//;
+
# Remove the filename -- on some platforms (eg. Linux) it will be in
# libc, on some (eg. Darwin) it will be in the main executable.
s/\(below main\) \(.+\)$/(below main)/;
|