summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime
diff options
context:
space:
mode:
authorLucian Musat <george.l.musat@intel.com>2015-09-25 14:31:20 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-09-28 12:00:24 +0100
commit320500e38e6ca64e5d5be8eb7ef74a3ea6bc2ed5 (patch)
tree8d8df8685f2b85bbd471d1485ba5b46b2cac4f66 /meta/lib/oeqa/runtime
parentadeba9a4cbe5c2fbcdbbcd59d559b6c3432ef4e4 (diff)
downloadpoky-320500e38e6ca64e5d5be8eb7ef74a3ea6bc2ed5.tar.gz
oeqa/parselogs: Updated log parser whitelist.
Added some fixes for meta-intel boards and moved some errors from specific images to common. (From OE-Core rev: ccbb12f9ec7c0a5714a8b1a24efb46755408c256) 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>
Diffstat (limited to 'meta/lib/oeqa/runtime')
-rw-r--r--meta/lib/oeqa/runtime/parselogs.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/meta/lib/oeqa/runtime/parselogs.py b/meta/lib/oeqa/runtime/parselogs.py
index e2dd3eb2c0..fc2bc38935 100644
--- a/meta/lib/oeqa/runtime/parselogs.py
+++ b/meta/lib/oeqa/runtime/parselogs.py
@@ -36,6 +36,8 @@ common_errors = [
36 'VGA arbiter: cannot open kernel arbiter, no multi-card support', 36 'VGA arbiter: cannot open kernel arbiter, no multi-card support',
37 'Failed to find URL:http://ipv4.connman.net/online/status.html', 37 'Failed to find URL:http://ipv4.connman.net/online/status.html',
38 'Online check failed for', 38 'Online check failed for',
39 'netlink init failed',
40 'Fast TSC calibration',
39 ] 41 ]
40 42
41x86_common = [ 43x86_common = [
@@ -46,7 +48,6 @@ x86_common = [
46] + common_errors 48] + common_errors
47 49
48qemux86_common = [ 50qemux86_common = [
49 'Fast TSC calibration',
50 'wrong ELF class', 51 'wrong ELF class',
51 "fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.", 52 "fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.",
52 "can't claim BAR ", 53 "can't claim BAR ",
@@ -89,7 +90,7 @@ ignore_errors = {
89 '(EE) open /dev/fb0: No such file or directory', 90 '(EE) open /dev/fb0: No such file or directory',
90 '(EE) AIGLX: reverting to software rendering', 91 '(EE) AIGLX: reverting to software rendering',
91 ] + x86_common, 92 ] + x86_common,
92 'core2_32' : [ 93 'intel-core2-32' : [
93 'ACPI: No _BQC method, cannot determine initial brightness', 94 'ACPI: No _BQC method, cannot determine initial brightness',
94 '[Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness', 95 '[Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness',
95 '(EE) Failed to load module "psb"', 96 '(EE) Failed to load module "psb"',
@@ -98,6 +99,7 @@ ignore_errors = {
98 '(EE) Failed to load module psbdrv', 99 '(EE) Failed to load module psbdrv',
99 '(EE) open /dev/fb0: No such file or directory', 100 '(EE) open /dev/fb0: No such file or directory',
100 '(EE) AIGLX: reverting to software rendering', 101 '(EE) AIGLX: reverting to software rendering',
102 "controller can't do DEVSLP, turning off",
101 ] + x86_common, 103 ] + x86_common,
102 'intel-corei7-64' : [ 104 'intel-corei7-64' : [
103 "controller can't do DEVSLP, turning off", 105 "controller can't do DEVSLP, turning off",
@@ -108,13 +110,9 @@ ignore_errors = {
108 'edgerouter' : [ 110 'edgerouter' : [
109 'Fatal server error:', 111 'Fatal server error:',
110 ] + common_errors, 112 ] + common_errors,
111 'minnow' : [
112 'netlink init failed',
113 ] + common_errors,
114 'jasperforest' : [ 113 'jasperforest' : [
115 'Activated service \'org.bluez\' failed:', 114 'Activated service \'org.bluez\' failed:',
116 'Unable to find NFC netlink family', 115 'Unable to find NFC netlink family',
117 'netlink init failed',
118 ] + common_errors, 116 ] + common_errors,
119} 117}
120 118