From: Paul F. <pa...@so...> - 2025-03-11 19:50:58
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=36ab09596af75e5c977ca43e20fc4dd598964454 commit 36ab09596af75e5c977ca43e20fc4dd598964454 Author: Paul Floyd <pj...@wa...> Date: Tue Mar 11 20:50:07 2025 +0100 Illumos regtest: add a filter for shell 'Abort' messages 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 7d38a0d4fd..d14ca727df 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\|Alarm call\|Terminated\|Killed\)/d" | +$SED "/sh: [1-9][0-9]*: \(Memory fault\|Alarm call\|Terminated\|Killed\|Abort\)/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:...\)/" | |