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