]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
filter_gdb: add regexp to filter out names which starts with a "."
authorAlexandra Hájková <ahajkova@redhat.com>
Mon, 15 Apr 2019 13:34:12 +0000 (15:34 +0200)
committerMark Wielaard <mark@klomp.org>
Fri, 19 Apr 2019 10:16:42 +0000 (12:16 +0200)
such names are used for "function descriptors" on ppc64

https://bugs.kde.org/show_bug.cgi?id=406561

NEWS
gdbserver_tests/filter_gdb

diff --git a/NEWS b/NEWS
index 7b0a055f47e2747ca611eb360dbd3a676947718d..4b5e044ff8a6a68ea70848b0c4d0403444410b0d 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -40,6 +40,7 @@ To see details of a given bug, visit
   https://bugs.kde.org/show_bug.cgi?id=XXXXXX
 where XXXXXX is the bug number as listed below.
 
+406561  mcinfcallWSRU gdbserver_test fails on ppc64
 n-i-bz  Fix minor one time leaks in dhat.
 n-i-bz  Add --run-cxx-freeres=no in outer args to avoid inner crashes.
 
index 6eff2293cf367d8f3cc684df8323928695cb59d7..fd2e8e75eaa14d6fab6505a4d77c2ea7d382b0c2 100755 (executable)
@@ -119,6 +119,7 @@ sed -e '/Remote debugging using/,/vgdb launched process attached/d'
     -e 's/in select ()$/in syscall .../'                                                              \
     -e 's/in \.__select ()$/in syscall .../'                                                          \
     -e 's/in select () at \.\.\/sysdeps\/unix\/syscall-template\.S.*$/in syscall .../'                \
+    -e 's/in \.__select () at \.\.\/sysdeps\/unix\/syscall-template\.S.*$/in syscall .../'            \
     -e '/^[    ]*at \.\.\/sysdeps\/unix\/syscall-template\.S/d'                                      \
     -e '/^[    ]*in \.\.\/sysdeps\/unix\/syscall-template\.S/d'                                      \
     -e '/^[1-9][0-9]*[         ]*\.\.\/sysdeps\/unix\/syscall-template\.S/d'                                 \