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:
Richard Purdie
2024-06-25 13:26:33 +01:00
parent 07eb1bea80
commit e881c552f0

View File

@@ -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 = []