We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cd3c965 + 3b1802b commit be90553Copy full SHA for be90553
1 file changed
Runner/utils/functestlib.sh
@@ -3310,6 +3310,9 @@ scan_dmesg_errors() {
3310
3311
if [ -s "$DMESG_ERRORS" ]; then
3312
log_info "dmesg scan: found non-benign module errors in $DMESG_ERRORS (history: $DMESG_HISTORY)"
3313
+ while IFS= read -r line; do
3314
+ log_info "[dmesg] $line"
3315
+ done < "$DMESG_ERRORS"
3316
return 0
3317
fi
3318
log_info "No relevant, non-benign errors for modules [$module_regex] in recent dmesg."
0 commit comments