Skip to content

Commit 3b1802b

Browse files
committed
Added dmesg errors to stdout
Added stdout for the dmesg error prints for scan_dmesg_errors function Signed-off-by: Vamsee Narapareddi <vnarapar@qti.qualcomm.com>
1 parent ffec696 commit 3b1802b

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

Runner/utils/functestlib.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3305,6 +3305,9 @@ scan_dmesg_errors() {
33053305

33063306
if [ -s "$DMESG_ERRORS" ]; then
33073307
log_info "dmesg scan: found non-benign module errors in $DMESG_ERRORS (history: $DMESG_HISTORY)"
3308+
while IFS= read -r line; do
3309+
log_info "[dmesg] $line"
3310+
done < "$DMESG_ERRORS"
33083311
return 0
33093312
fi
33103313
log_info "No relevant, non-benign errors for modules [$module_regex] in recent dmesg."

0 commit comments

Comments
 (0)