summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
Diffstat (limited to 'meta')
-rw-r--r--meta/lib/oeqa/runtime/parselogs.py36
1 files changed, 29 insertions, 7 deletions
diff --git a/meta/lib/oeqa/runtime/parselogs.py b/meta/lib/oeqa/runtime/parselogs.py
index 42cb1b5e6f..19a4f1bf79 100644
--- a/meta/lib/oeqa/runtime/parselogs.py
+++ b/meta/lib/oeqa/runtime/parselogs.py
@@ -7,10 +7,22 @@ from oeqa.utils.decorators import *
7errors = ["error", "cannot", "can\'t", "failed"] 7errors = ["error", "cannot", "can\'t", "failed"]
8 8
9common_errors = [ 9common_errors = [
10 '(WW) warning, (EE) error, (NI) not implemented, (??) unknown.', 10 "(WW) warning, (EE) error, (NI) not implemented, (??) unknown.",
11 'dma timeout', 11 "dma timeout",
12 'can\'t add hid device:', 12 "can\'t add hid device:",
13 'usbhid: probe of ', 13 "usbhid: probe of ",
14 "_OSC failed (AE_ERROR)",
15 "_OSC failed (AE_SUPPORT)",
16 "AE_ALREADY_EXISTS"
17 "ACPI _OSC request failed (AE_SUPPORT)"
18 "can\'t disable ASPM",
19 "Failed to load module \"vesa\"",
20 "Failed to load module vesa",
21 "Failed to load module \"modesetting\"",
22 "Failed to load module modesetting",
23 "Failed to load module \"glx\"",
24 "Failed to load module glx",
25 "[drm] Cannot find any crtc or sizes - going 1024x768"
14 ] 26 ]
15 27
16x86_common = [ 28x86_common = [
@@ -24,9 +36,6 @@ qemux86_common = [
24 'Fast TSC calibration', 36 'Fast TSC calibration',
25 '_OSC failed (AE_NOT_FOUND); disabling ASPM', 37 '_OSC failed (AE_NOT_FOUND); disabling ASPM',
26 'Open ACPI failed (/var/run/acpid.socket) (No such file or directory)', 38 'Open ACPI failed (/var/run/acpid.socket) (No such file or directory)',
27 'Failed to load module "vesa"',
28 'Failed to load module "modesetting"',
29 'Failed to load module "glx"',
30 'wrong ELF class', 39 'wrong ELF class',
31] + common_errors 40] + common_errors
32 41
@@ -54,6 +63,19 @@ ignore_errors = {
54 'crownbay' : x86_common, 63 'crownbay' : x86_common,
55 'genericx86' : x86_common, 64 'genericx86' : x86_common,
56 'genericx86-64' : x86_common, 65 'genericx86-64' : x86_common,
66 'edgerouter' : [
67 'Fatal server error:',
68 ] + common_errors,
69 'minnow' : [
70 'netlink init failed',
71 'NETLINK INITIALIZATION FAILED',
72 ] + common_errors,
73 'jasperforest' : [
74 'Activated service \'org.bluez\' failed:',
75 'Unable to find NFC netlink family',
76 'netlink init failed',
77 'NETLINK INITIALIZATION FAILED',
78 ] + common_errors,
57} 79}
58 80
59log_locations = ["/var/log/","/var/log/dmesg", "/tmp/dmesg_output.log"] 81log_locations = ["/var/log/","/var/log/dmesg", "/tmp/dmesg_output.log"]