[oe-commits] Richard Purdie : oeqa/parselogs: Skip hda opcode errors

git at git.openembedded.org git at git.openembedded.org
Tue Mar 10 14:51:58 UTC 2015


Module: openembedded-core.git
Branch: master-next
Commit: deef49a4a1496f187f4ed733539ffa88fe8d1dda
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=deef49a4a1496f187f4ed733539ffa88fe8d1dda

Author: Richard Purdie <richard.purdie at linuxfoundation.org>
Date:   Tue Mar 10 14:20:44 2015 +0000

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]

Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/lib/oeqa/runtime/parselogs.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta/lib/oeqa/runtime/parselogs.py b/meta/lib/oeqa/runtime/parselogs.py
index b1dcc1e..cf0f67c 100644
--- a/meta/lib/oeqa/runtime/parselogs.py
+++ b/meta/lib/oeqa/runtime/parselogs.py
@@ -22,7 +22,8 @@ common_errors = [
     "Failed to load module modesetting",
     "Failed to load module \"glx\"",
     "Failed to load module glx",
-    "[drm] Cannot find any crtc or sizes - going 1024x768"
+    "[drm] Cannot find any crtc or sizes - going 1024x768",
+    "hd.: possibly failed opcode"
     ]
 
 x86_common = [



More information about the Openembedded-commits mailing list