Skip to content

Commit be90553

Browse files
authored
Merge pull request #280 from vnarapar/shmbridge_fix
Added dmesg errors to stdout
2 parents cd3c965 + 3b1802b commit be90553

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
@@ -3310,6 +3310,9 @@ scan_dmesg_errors() {
33103310

33113311
if [ -s "$DMESG_ERRORS" ]; then
33123312
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"
33133316
return 0
33143317
fi
33153318
log_info "No relevant, non-benign errors for modules [$module_regex] in recent dmesg."

0 commit comments

Comments
 (0)