From: Paul Floyd Date: Sat, 9 Nov 2024 19:05:03 +0000 (+0100) Subject: Illumos regtest: filter more signal messages from bash X-Git-Tag: VALGRIND_3_25_0~245 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=61bf8fc5861041002affc83fc9f4ae3f273255f1;p=thirdparty%2Fvalgrind.git Illumos regtest: filter more signal messages from bash --- diff --git a/tests/filter_stderr_basic.in b/tests/filter_stderr_basic.in index f32266c0b..7d38a0d4f 100755 --- a/tests/filter_stderr_basic.in +++ b/tests/filter_stderr_basic.in @@ -57,7 +57,7 @@ perl -n -e 'print if !/^(Illegal instruction|Segmentation fault|Alarm clock|Abor # Similar as above, but for ksh on Solaris/illumos. perl -n -e 'print if !/^(Memory fault|Killed) $/' | # bash on Illumos -$SED '/sh: [1-9][0-9]*: Memory fault/d' | +$SED "/sh: [1-9][0-9]*: \(Memory fault\|Alarm call\|Terminated\|Killed\)/d" | # Translate intercepted glibc functions back to their canonical name perl -p -e "s/: memcpy\@\@?GLIBC_[.1-9]+ \(vg_replace_strmem.c:.*?\)/: memcpy \(vg_replace_strmem.c:...\)/" |