Message ID | 1494352571-17199-3-git-send-email-bo.li.liu@oracle.com (mailing list archive) |
---|---|
State | Not Applicable |
Headers | show |
On Tue, May 09, 2017 at 11:56:07AM -0600, Liu Bo wrote: > _get_current_dmesg can be used to grep customized pattern. > > Signed-off-by: Liu Bo <bo.li.liu@oracle.com> I can't apply this patch on top of current master, perhaps it needs a rebase :) > --- > common/rc | 9 +++++++-- > 1 file changed, 7 insertions(+), 2 deletions(-) > > diff --git a/common/rc b/common/rc > index 78a2101..111ed69 100644 > --- a/common/rc > +++ b/common/rc > @@ -3215,6 +3215,12 @@ _get_device_size() > grep `_short_dev $1` /proc/partitions | awk '{print $3}' > } > > +# get current dmesg log > +_get_current_dmesg() > +{ > + dmesg | tac | sed -ne "0,\#run fstests $seqnum at $date_time#p" | tac > +} > + > # check dmesg log for WARNING/Oops/etc. > _check_dmesg() > { > @@ -3230,8 +3236,7 @@ _check_dmesg() > > # search the dmesg log of last run of $seqnum for possible failures > # use sed \cregexpc address type, since $seqnum contains "/" This second line of comment should go to _get_current_dmesg. Thanks, Eryu > - dmesg | tac | sed -ne "0,\#run fstests $seqnum at $date_time#p" | \ > - tac | $filter >$seqres.dmesg > + _get_current_dmesg | $filter >$seqres.dmesg > grep -q -e "kernel BUG at" \ > -e "WARNING:" \ > -e "BUG:" \ > -- > 2.5.0 > -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/common/rc b/common/rc index 78a2101..111ed69 100644 --- a/common/rc +++ b/common/rc @@ -3215,6 +3215,12 @@ _get_device_size() grep `_short_dev $1` /proc/partitions | awk '{print $3}' } +# get current dmesg log +_get_current_dmesg() +{ + dmesg | tac | sed -ne "0,\#run fstests $seqnum at $date_time#p" | tac +} + # check dmesg log for WARNING/Oops/etc. _check_dmesg() { @@ -3230,8 +3236,7 @@ _check_dmesg() # search the dmesg log of last run of $seqnum for possible failures # use sed \cregexpc address type, since $seqnum contains "/" - dmesg | tac | sed -ne "0,\#run fstests $seqnum at $date_time#p" | \ - tac | $filter >$seqres.dmesg + _get_current_dmesg | $filter >$seqres.dmesg grep -q -e "kernel BUG at" \ -e "WARNING:" \ -e "BUG:" \
_get_current_dmesg can be used to grep customized pattern. Signed-off-by: Liu Bo <bo.li.liu@oracle.com> --- common/rc | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-)