Skip to content

Commit

Permalink
Merge pull request #20012 from pevik/ltp/dmesg-add-Call-Trace
Browse files Browse the repository at this point in the history
LTP: Add 'Call Trace:' as failure in dmesg
  • Loading branch information
pevik authored Aug 22, 2024
2 parents 30bd222 + a56e954 commit 62dd8c2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/known_bugs.pm
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ sub create_list_of_serial_failures {
push @$serial_failures, {type => $type, message => 'Kernel stack is corrupted', pattern => quotemeta 'stack-protector: Kernel stack is corrupted'};
push @$serial_failures, {type => $type, message => 'Kernel BUG found', pattern => quotemeta 'BUG: failure at'};
push @$serial_failures, {type => $type, message => 'Kernel Ooops found', pattern => quotemeta '-[ cut here ]-'};
# bsc#1229025, but must be soft because any LTP test which intentionally triggers OOM killer will produce this call trace as well
push @$serial_failures, {type => 'soft', message => 'Kernel Call Trace found', pattern => quotemeta 'Call Trace:'};
}

push @$serial_failures, {type => 'soft', message => 'Low memory problem detected bsc#1166955', pattern => quotemeta 'kswapd0 Kdump'};
Expand Down

0 comments on commit 62dd8c2

Please sign in to comment.