aboutsummaryrefslogtreecommitdiffstats
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-21 23:47:31 +0000
commitfb74c4cd4d123da270e58578644857c9a37b6c64 (patch)
tree50f34796d0dd6d6ff9d8e31aa9fa4e9be4b21e08
parentc47d18b87ac6fbe85959546ca049d13aa624e716 (diff)
downloadopenembedded-core-contrib-fb74c4cd4d123da270e58578644857c9a37b6c64.tar.gz
parselogs.py: ignore failure messages for beaglebone edgerouter and mpc8315e-rdb
Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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 = {
'The driver is built-in, so to load the firmware you need to',
] + x86_common,
'edgerouter' : [
+ 'not creating \'/sys/firmware/fdt\'',
+ 'Failed to find cpu0 device node',
'Fatal server error:',
+ 'Server terminated with error',
+ ] + common_errors,
+ 'beaglebone-yocto' : [
+ 'Direct firmware load for regulatory.db',
+ 'failed to load regulatory.db',
+ 'l4_wkup_cm',
+ 'Failed to load module "glx"',
+ 'Failed to make EGL context current',
+ 'glamor initialization failed',
+ ] + common_errors,
+ 'mpc8315e-rdb' : [
+ 'of_irq_parse_pci: failed with',
+ 'Fatal server error:',
+ 'Server terminated with error',
] + common_errors,
}