From: Paul F. <pa...@so...> - 2024-11-09 19:05:45
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=61bf8fc5861041002affc83fc9f4ae3f273255f1 commit 61bf8fc5861041002affc83fc9f4ae3f273255f1 Author: Paul Floyd <pj...@wa...> Date: Sat Nov 9 20:05:03 2024 +0100 Illumos regtest: filter more signal messages from bash Diff: --- tests/filter_stderr_basic.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/filter_stderr_basic.in b/tests/filter_stderr_basic.in index f32266c0b7..7d38a0d4fd 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:...\)/" | |