mirror of
https://git.yoctoproject.org/poky
synced 2026-04-23 00:32:12 +02:00
oeqa/runtime/parselogs: Add some kernel log trigger keywords
During testing we're finding some kernel oops messages and other key kernel errors such as irq issues are not triggering our log parsing. Add those keywords to the list of things to scan for, making such failures much more visible. (From OE-Core rev: ef4623be60226e8caaf7813705aa4941ff354eac) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -34,7 +34,7 @@ class ParseLogsTest(OERuntimeTestCase):
|
||||
log_locations = ["/var/log/", "/var/log/dmesg", "/tmp/dmesg_output.log"]
|
||||
|
||||
# The keywords that identify error messages in the log files
|
||||
errors = ["error", "cannot", "can't", "failed"]
|
||||
errors = ["error", "cannot", "can't", "failed", "---[ cut here ]---", "No irq handler for vector"]
|
||||
|
||||
# A list of error messages that should be ignored
|
||||
ignore_errors = []
|
||||
|
||||
Reference in New Issue
Block a user