summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/parselogs.py
diff options
context:
space:
mode:
authorLucian Musat <george.l.musat@intel.com>2015-03-13 14:54:56 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-03-20 11:03:46 +0000
commitb7a9a06b2dd0ee4abcd3f0c90f9c5c04edf78a95 (patch)
tree84ceb0440d1cc77ba4101ffd8c50f2a831ee7544 /meta/lib/oeqa/runtime/parselogs.py
parent6ad040a52271e6309e968908294a1d4a3338a980 (diff)
downloadpoky-b7a9a06b2dd0ee4abcd3f0c90f9c5c04edf78a95.tar.gz
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. (From OE-Core rev: c25474be02a562585ded66a6d538aee21056f628) Signed-off-by: Lucian Musat <george.l.musat@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.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.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/meta/lib/oeqa/runtime/parselogs.py b/meta/lib/oeqa/runtime/parselogs.py
index cf0f67c628..7721912a23 100644
--- a/meta/lib/oeqa/runtime/parselogs.py
+++ b/meta/lib/oeqa/runtime/parselogs.py
@@ -13,8 +13,8 @@ common_errors = [
13 "usbhid: probe of ", 13 "usbhid: probe of ",
14 "_OSC failed (AE_ERROR)", 14 "_OSC failed (AE_ERROR)",
15 "_OSC failed (AE_SUPPORT)", 15 "_OSC failed (AE_SUPPORT)",
16 "AE_ALREADY_EXISTS" 16 "AE_ALREADY_EXISTS",
17 "ACPI _OSC request failed (AE_SUPPORT)" 17 "ACPI _OSC request failed (AE_SUPPORT)",
18 "can\'t disable ASPM", 18 "can\'t disable ASPM",
19 "Failed to load module \"vesa\"", 19 "Failed to load module \"vesa\"",
20 "Failed to load module vesa", 20 "Failed to load module vesa",
@@ -23,6 +23,9 @@ common_errors = [
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 "_OSC failed (AE_NOT_FOUND); disabling ASPM",
27 "Open ACPI failed (/var/run/acpid.socket) (No such file or directory)",
28 "NX (Execute Disable) protection cannot be enabled: non-PAE kernel!",
26 "hd.: possibly failed opcode" 29 "hd.: possibly failed opcode"
27 ] 30 ]
28 31
@@ -35,8 +38,6 @@ x86_common = [
35 38
36qemux86_common = [ 39qemux86_common = [
37 'Fast TSC calibration', 40 'Fast TSC calibration',
38 '_OSC failed (AE_NOT_FOUND); disabling ASPM',
39 'Open ACPI failed (/var/run/acpid.socket) (No such file or directory)',
40 'wrong ELF class', 41 'wrong ELF class',
41] + common_errors 42] + common_errors
42 43