|
From: Mark W. <ma...@so...> - 2021-02-27 16:46:12
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=9774de004afbe642dc5f0cc04ac17ff3637f8784 commit 9774de004afbe642dc5f0cc04ac17ff3637f8784 Author: Mark Wielaard <ma...@kl...> Date: Sat Feb 27 17:44:30 2021 +0100 gdbserver_tests: filter out Download failed: messages. gdb can also use debuginfod and is excessively chatty when downloads fail (even when DEBUGINFOD_URLS isn't set). Filter those messages out of the gdb output. Diff: --- gdbserver_tests/filter_gdb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gdbserver_tests/filter_gdb b/gdbserver_tests/filter_gdb index 204c0fc048..3bcd26d86c 100755 --- a/gdbserver_tests/filter_gdb +++ b/gdbserver_tests/filter_gdb @@ -19,6 +19,9 @@ s/^\[?1034hReading symbols/Reading symbols/ # remove message about missing debuginfos /^Missing separate debuginfo/d +# remove messages about not being able to download debuginfos +/^Download failed: /d + # suppress lines telling file _exit.c does not exist /\/_exit.c: No such file or directory/d |