summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/cases/parselogs.py
diff options
context:
space:
mode:
authorYi Zhao <yi.zhao@windriver.com>2019-01-18 08:11:31 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-01-22 14:35:58 +0000
commitd150f6f5e799923867fdc7d2e638be07406997e7 (patch)
treed8a5629366f9d85a29ef91fecc2823347fd29c44 /meta/lib/oeqa/runtime/cases/parselogs.py
parentf682cd256f02e0067fcdbd3102e75069b049e4ae (diff)
downloadpoky-d150f6f5e799923867fdc7d2e638be07406997e7.tar.gz
parselogs.py: ignore failure messages for beaglebone edgerouter and mpc8315e-rdb
(From OE-Core rev: fb74c4cd4d123da270e58578644857c9a37b6c64) Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/runtime/cases/parselogs.py')
-rw-r--r--meta/lib/oeqa/runtime/cases/parselogs.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/cases/parselogs.py b/meta/lib/oeqa/runtime/cases/parselogs.py
index 3d72e20934..e3465ea71e 100644
--- a/meta/lib/oeqa/runtime/cases/parselogs.py
+++ b/meta/lib/oeqa/runtime/cases/parselogs.py
@@ -162,7 +162,23 @@ ignore_errors = {
162 'The driver is built-in, so to load the firmware you need to', 162 'The driver is built-in, so to load the firmware you need to',
163 ] + x86_common, 163 ] + x86_common,
164 'edgerouter' : [ 164 'edgerouter' : [
165 'not creating \'/sys/firmware/fdt\'',
166 'Failed to find cpu0 device node',
165 'Fatal server error:', 167 'Fatal server error:',
168 'Server terminated with error',
169 ] + common_errors,
170 'beaglebone-yocto' : [
171 'Direct firmware load for regulatory.db',
172 'failed to load regulatory.db',
173 'l4_wkup_cm',
174 'Failed to load module "glx"',
175 'Failed to make EGL context current',
176 'glamor initialization failed',
177 ] + common_errors,
178 'mpc8315e-rdb' : [
179 'of_irq_parse_pci: failed with',
180 'Fatal server error:',
181 'Server terminated with error',
166 ] + common_errors, 182 ] + common_errors,
167} 183}
168 184