|
From: Mark W. <ma...@so...> - 2019-04-19 10:17:18
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=b1cc37ddb660afc536131227a9fb452ac9328972 commit b1cc37ddb660afc536131227a9fb452ac9328972 Author: Alexandra Hájková <aha...@re...> Date: Mon Apr 15 15:34:12 2019 +0200 filter_gdb: add regexp to filter out names which starts with a "." such names are used for "function descriptors" on ppc64 https://bugs.kde.org/show_bug.cgi?id=406561 Diff: --- NEWS | 1 + gdbserver_tests/filter_gdb | 1 + 2 files changed, 2 insertions(+) diff --git a/NEWS b/NEWS index 7b0a055..4b5e044 100644 --- 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. diff --git a/gdbserver_tests/filter_gdb b/gdbserver_tests/filter_gdb index 6eff229..fd2e8e7 100755 --- a/gdbserver_tests/filter_gdb +++ b/gdbserver_tests/filter_gdb @@ -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' \ |