]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
be a bit more libc tolerant
authorDirk Mueller <daywalker@users.sourceforge.net>
Thu, 24 Apr 2003 01:01:01 +0000 (01:01 +0000)
committerDirk Mueller <daywalker@users.sourceforge.net>
Thu, 24 Apr 2003 01:01:01 +0000 (01:01 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1553

tests/filter_stderr_basic

index f8d2e44850dc91a9205b4e255b7278893545607a..2ffd84bdaba80797f6cd70fd1f7ba2605c172e71 100755 (executable)
@@ -12,6 +12,9 @@ sed "/^.*, .* for x86-linux\./ , /./ d"                                |
 
 # Remove other introductory lines
 sed "/Estimated CPU clock rate is [0-9]\+ MHz/d"                       |
-sed "/For more details, rerun with: -v/d"
-
+sed "/For more details, rerun with: -v/d"                              |
 
+# Reduce some libc incompatibility
+sed "s/ __getsockname / getsockname /"                                 |
+sed "s/ __sigaction / sigaction /"                                     |
+sed "s/ __GI___/ __/"