Blame SOURCES/valgrind-3.15.0-ppc64-filter_gdb.patch

baee74
commit b1cc37ddb660afc536131227a9fb452ac9328972
baee74
Author: Alexandra Hájková <ahajkova@redhat.com>
baee74
Date:   Mon Apr 15 15:34:12 2019 +0200
baee74
baee74
    filter_gdb: add regexp to filter out names which starts with a "."
baee74
    
baee74
    such names are used for "function descriptors" on ppc64
baee74
    
baee74
    https://bugs.kde.org/show_bug.cgi?id=406561
baee74
baee74
diff --git a/gdbserver_tests/filter_gdb b/gdbserver_tests/filter_gdb
baee74
index 6eff229..fd2e8e7 100755
baee74
--- a/gdbserver_tests/filter_gdb
baee74
+++ b/gdbserver_tests/filter_gdb
baee74
@@ -119,6 +119,7 @@ sed -e '/Remote debugging using/,/vgdb launched process attached/d'
baee74
     -e 's/in select ()$/in syscall .../'                                                              \
baee74
     -e 's/in \.__select ()$/in syscall .../'                                                          \
baee74
     -e 's/in select () at \.\.\/sysdeps\/unix\/syscall-template\.S.*$/in syscall .../'                \
baee74
+    -e 's/in \.__select () at \.\.\/sysdeps\/unix\/syscall-template\.S.*$/in syscall .../'            \
baee74
     -e '/^[ 	]*at \.\.\/sysdeps\/unix\/syscall-template\.S/d'                                      \
baee74
     -e '/^[ 	]*in \.\.\/sysdeps\/unix\/syscall-template\.S/d'                                      \
baee74
     -e '/^[1-9][0-9]*[ 	]*\.\.\/sysdeps\/unix\/syscall-template\.S/d'                                 \