We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffec696 commit c340a94Copy full SHA for c340a94
Runner/utils/functestlib.sh
@@ -3304,7 +3304,9 @@ scan_dmesg_errors() {
3304
cp "$DMESG_ERRORS" "$DMESG_HISTORY"
3305
3306
if [ -s "$DMESG_ERRORS" ]; then
3307
- log_info "dmesg scan: found non-benign module errors in $DMESG_ERRORS (history: $DMESG_HISTORY)"
+ while IFS= read -r line; do
3308
+ log_info "[dmesg] $line"
3309
+ done < "$DMESG_ERRORS"
3310
return 0
3311
fi
3312
log_info "No relevant, non-benign errors for modules [$module_regex] in recent dmesg."
0 commit comments