1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-09 05:29:32 +00:00

oeqa/runtime: Added some new filters for the log parser Including custom filters for edgerouter, minnow and jasperforest.

(From OE-Core rev: 20310e68a2930dd1ddc6d0d9fc577fffa5a2777f)

Signed-off-by: Lucian Musat <george.l.musat@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Lucian Musat
2014-11-20 14:21:18 +02:00
committed by Richard Purdie
parent 3857f24e2d
commit 16e8b40b50
+29 -7
View File
@@ -7,10 +7,22 @@ from oeqa.utils.decorators import *
errors = ["error", "cannot", "can\'t", "failed"]
common_errors = [
'(WW) warning, (EE) error, (NI) not implemented, (??) unknown.',
'dma timeout',
'can\'t add hid device:',
'usbhid: probe of ',
"(WW) warning, (EE) error, (NI) not implemented, (??) unknown.",
"dma timeout",
"can\'t add hid device:",
"usbhid: probe of ",
"_OSC failed (AE_ERROR)",
"_OSC failed (AE_SUPPORT)",
"AE_ALREADY_EXISTS"
"ACPI _OSC request failed (AE_SUPPORT)"
"can\'t disable ASPM",
"Failed to load module \"vesa\"",
"Failed to load module vesa",
"Failed to load module \"modesetting\"",
"Failed to load module modesetting",
"Failed to load module \"glx\"",
"Failed to load module glx",
"[drm] Cannot find any crtc or sizes - going 1024x768"
]
x86_common = [
@@ -24,9 +36,6 @@ qemux86_common = [
'Fast TSC calibration',
'_OSC failed (AE_NOT_FOUND); disabling ASPM',
'Open ACPI failed (/var/run/acpid.socket) (No such file or directory)',
'Failed to load module "vesa"',
'Failed to load module "modesetting"',
'Failed to load module "glx"',
'wrong ELF class',
] + common_errors
@@ -54,6 +63,19 @@ ignore_errors = {
'crownbay' : x86_common,
'genericx86' : x86_common,
'genericx86-64' : x86_common,
'edgerouter' : [
'Fatal server error:',
] + common_errors,
'minnow' : [
'netlink init failed',
'NETLINK INITIALIZATION FAILED',
] + common_errors,
'jasperforest' : [
'Activated service \'org.bluez\' failed:',
'Unable to find NFC netlink family',
'netlink init failed',
'NETLINK INITIALIZATION FAILED',
] + common_errors,
}
log_locations = ["/var/log/","/var/log/dmesg", "/tmp/dmesg_output.log"]