summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/parselogs.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2016-08-19 11:03:00 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-11-08 23:47:14 +0000
commita6b8fda00cabe920e5f961aadabc5a62ef7f6274 (patch)
tree572b08291948dcf1cb639f8224e6b2a38281f19d /meta/lib/oeqa/runtime/parselogs.py
parent1b9a98f78cd08fd4c4b941887ef190c42fde72a5 (diff)
downloadpoky-a6b8fda00cabe920e5f961aadabc5a62ef7f6274.tar.gz
parselogs: Ignore uvesafb timeouts
We're periodically seeing uvesafb timeouts on the autobuilder. Whitelist these errors as there is little it seems we can do about them and we therefore choose to ignore them rather than fail the builds. [YOCTO #8245] There is a better solution proposed in the bug with a -1 timeout however this avoids failed builds until such times as that is implemented. (From OE-Core rev: 8097f2da79b7862733494d2321e3dfdb0880804d) (From OE-Core rev: 37356aa62558434bd3a6402c35f16f2f75903af0) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/runtime/parselogs.py')
-rw-r--r--meta/lib/oeqa/runtime/parselogs.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/parselogs.py b/meta/lib/oeqa/runtime/parselogs.py
index 8e714a644b..32cc9f0e6c 100644
--- a/meta/lib/oeqa/runtime/parselogs.py
+++ b/meta/lib/oeqa/runtime/parselogs.py
@@ -64,6 +64,11 @@ qemux86_common = [
64 "fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.", 64 "fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.",
65 "can't claim BAR ", 65 "can't claim BAR ",
66 'amd_nb: Cannot enumerate AMD northbridges', 66 'amd_nb: Cannot enumerate AMD northbridges',
67 'uvesafb: 5000 ms task timeout error',
68 'detected fb_set_par error, error code: -22',
69 'Getting VBE info block failed',
70 'vbe_init() failed with -22',
71 'uvesafb: mode switch failed',
67] + common_errors 72] + common_errors
68 73
69ignore_errors = { 74ignore_errors = {