From: Mark Wielaard Date: Sat, 20 Apr 2024 20:56:05 +0000 (+0200) Subject: filter out in /absolute/path in drd/tests stderr filter X-Git-Tag: VALGRIND_3_23_0~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=847f1d414d982d3344e25bebf67819565cdca5ff;p=thirdparty%2Fvalgrind.git filter out in /absolute/path in drd/tests stderr filter This filters out a line like: by 0x........: ??? (in /home/mjw/valgrind/helgrind/tests/tc04_free_lock) and replaces it with by 0x........: ??? --- diff --git a/drd/tests/filter_stderr.in b/drd/tests/filter_stderr.in index f2ede7767..485a588b8 100755 --- a/drd/tests/filter_stderr.in +++ b/drd/tests/filter_stderr.in @@ -49,6 +49,7 @@ $SED \ -e "s/ (\([a-zA-Z_]*\.h\):[0-9]*)/ (\1:?)/" \ -e "s/ (\([a-zA-Z_]*\.cpp\):[0-9]*)/ (\1:?)/" \ -e "s/\( name [^ ]*\)-[0-9]*\( oflag \)/\1\2/" \ +-e "s/??? (in \/[A-Za-z0-9_/-]*)/???/" \ -e '/^ by 0x[0-9a-fA-F]*: process_dl_debug (in \/lib[0-9]*\/ld-[0-9.]*\.so)$/d' \ -e "/^For lists of detected and suppressed errors, rerun with: -s$/d" |