We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffec696 commit 3b1802bCopy full SHA for 3b1802b
1 file changed
Runner/utils/functestlib.sh
@@ -3305,6 +3305,9 @@ scan_dmesg_errors() {
3305
3306
if [ -s "$DMESG_ERRORS" ]; then
3307
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"
3311
return 0
3312
fi
3313
log_info "No relevant, non-benign errors for modules [$module_regex] in recent dmesg."
0 commit comments