|
From: <sv...@va...> - 2013-10-08 06:02:12
|
Author: florian
Date: Tue Oct 8 06:02:01 2013
New Revision: 13627
Log:
Tweak to avoid a trailing space.
Modified:
trunk/tests/filter_libc
Modified: trunk/tests/filter_libc
==============================================================================
--- trunk/tests/filter_libc (original)
+++ trunk/tests/filter_libc Tue Oct 8 06:02:01 2013
@@ -14,7 +14,7 @@
s/\(within \/.*(libc|libSystem).*\)$/(within \/...libc...)/;
# Filter out dynamic loader
- s/\(in \/.*ld-.*so\)$//;
+ 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.
|