]> code.ossystems Code Review - openembedded-core.git/commitdiff
parselogs.py: ignore failure messages for beaglebone edgerouter and mpc8315e-rdb
authorYi Zhao <yi.zhao@windriver.com>
Fri, 18 Jan 2019 00:11:31 +0000 (08:11 +0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 21 Jan 2019 23:47:31 +0000 (23:47 +0000)
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/lib/oeqa/runtime/cases/parselogs.py

index 3d72e209349fe3ce44ed38ad83ec9e0fddbc493f..e3465ea71e52aa7ed15b438ea9607d7bd4cdfbac 100644 (file)
@@ -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,
 }