From: Mark Wielaard Date: Sat, 27 Feb 2021 16:44:30 +0000 (+0100) Subject: gdbserver_tests: filter out Download failed: messages. X-Git-Tag: VALGRIND_3_17_0~34 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9774de004afbe642dc5f0cc04ac17ff3637f8784;p=thirdparty%2Fvalgrind.git 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 --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