diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-03-10 14:20:44 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-03-12 12:50:24 +0000 |
commit | 7f30749fe026e9ceb75d73b89271145a45a60763 (patch) | |
tree | 585d85a3c2358243a6dea3667fb00aaccbddd6b4 /meta/lib | |
parent | 0aff27522d467ee5d02289594207ddef4add7081 (diff) | |
download | poky-7f30749fe026e9ceb75d73b89271145a45a60763.tar.gz |
oeqa/parselogs: Skip hda opcode errors
These occur when running images under virtualisation on machines with
high load which sometimes trigger timeouts in the kernel DMA code.
They're harmless to ignore in these cases.
Adding this since "failing" the build due to this is more annoying
thank useful.
[YOCTO #7387]
(From OE-Core rev: fb29441216435b9bae47ca9cd42db5a6b1fe77d8)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oeqa/runtime/parselogs.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/lib/oeqa/runtime/parselogs.py b/meta/lib/oeqa/runtime/parselogs.py index b1dcc1e6ce..cf0f67c628 100644 --- a/meta/lib/oeqa/runtime/parselogs.py +++ b/meta/lib/oeqa/runtime/parselogs.py | |||
@@ -22,7 +22,8 @@ common_errors = [ | |||
22 | "Failed to load module modesetting", | 22 | "Failed to load module modesetting", |
23 | "Failed to load module \"glx\"", | 23 | "Failed to load module \"glx\"", |
24 | "Failed to load module glx", | 24 | "Failed to load module glx", |
25 | "[drm] Cannot find any crtc or sizes - going 1024x768" | 25 | "[drm] Cannot find any crtc or sizes - going 1024x768", |
26 | "hd.: possibly failed opcode" | ||
26 | ] | 27 | ] |
27 | 28 | ||
28 | x86_common = [ | 29 | x86_common = [ |