[oe-commits] Lucian Musat : oeqa/runtime: Fixed a problem in logparser where it failed to whitelist some common errors.

git at git.openembedded.org git at git.openembedded.org
Fri Mar 20 10:59:14 UTC 2015


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

Author: Lucian Musat <george.l.musat at intel.com>
Date:   Fri Mar 13 14:54:56 2015 +0200

oeqa/runtime: Fixed a problem in logparser where it failed to whitelist some common errors.

And some minor tweaks like moving some errors from qemu to common.

Signed-off-by: Lucian Musat <george.l.musat at intel.com>
Signed-off-by: Ross Burton <ross.burton at intel.com>

---

 meta/lib/oeqa/runtime/parselogs.py | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/meta/lib/oeqa/runtime/parselogs.py b/meta/lib/oeqa/runtime/parselogs.py
index cf0f67c..7721912 100644
--- a/meta/lib/oeqa/runtime/parselogs.py
+++ b/meta/lib/oeqa/runtime/parselogs.py
@@ -13,8 +13,8 @@ common_errors = [
     "usbhid: probe of ",
     "_OSC failed (AE_ERROR)",
     "_OSC failed (AE_SUPPORT)",
-    "AE_ALREADY_EXISTS"
-    "ACPI _OSC request failed (AE_SUPPORT)"
+    "AE_ALREADY_EXISTS",
+    "ACPI _OSC request failed (AE_SUPPORT)",
     "can\'t disable ASPM",
     "Failed to load module \"vesa\"",
     "Failed to load module vesa",
@@ -23,6 +23,9 @@ common_errors = [
     "Failed to load module \"glx\"",
     "Failed to load module glx",
     "[drm] Cannot find any crtc or sizes - going 1024x768",
+    "_OSC failed (AE_NOT_FOUND); disabling ASPM",
+    "Open ACPI failed (/var/run/acpid.socket) (No such file or directory)",
+    "NX (Execute Disable) protection cannot be enabled: non-PAE kernel!",
     "hd.: possibly failed opcode"
     ]
 
@@ -35,8 +38,6 @@ x86_common = [
 
 qemux86_common = [
     'Fast TSC calibration', 
-    '_OSC failed (AE_NOT_FOUND); disabling ASPM',
-    'Open ACPI failed (/var/run/acpid.socket) (No such file or directory)',
     'wrong ELF class',
 ] + common_errors
 



More information about the Openembedded-commits mailing list