Illumos regtest: filter more signal messages from bash

This commit is contained in:
Paul Floyd
2024-11-09 20:05:03 +01:00
parent 4efa3c9203
commit 61bf8fc586

View File

@@ -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:...\)/" |