Skip to content

Commit a3000ff

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 ed4a3f6 commit a3000ff

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Runner/utils/functestlib.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3281,6 +3281,10 @@ scan_dmesg_errors() {
32813281

32823282
if [ -s "$DMESG_ERRORS" ]; then
32833283
log_info "dmesg scan found non benign module errors in $DMESG_ERRORS (history: $DMESG_HISTORY)"
3284+
log_info "Below are the errors"
3285+
while IFS= read -r line; do
3286+
log_info "[dmesg] $line"
3287+
done < "$DMESG_ERRORS"
32843288
return 0
32853289
fi
32863290

0 commit comments

Comments
 (0)