summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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