[oe-commits] Ross Burton : oeqa/runtime/parselogs: add more x86 log exceptions

git at git.openembedded.org git at git.openembedded.org
Fri Jul 24 22:30:13 UTC 2015


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

Author: Ross Burton <ross.burton at intel.com>
Date:   Thu Jul 23 22:59:47 2015 +0100

oeqa/runtime/parselogs: add more x86 log exceptions

Move "fail to add MMCONFIG..." to qemux86_common as we started to also see it on
x86-64 with Linux 4.1.

Add "can't claim BAR..." to qemux86_common.

Generalise "Failed to access perfctr MSR" as the MSR number can change.

Signed-off-by: Ross Burton <ross.burton at intel.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

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

diff --git a/meta/lib/oeqa/runtime/parselogs.py b/meta/lib/oeqa/runtime/parselogs.py
index 8d0a1db..ce9c162 100644
--- a/meta/lib/oeqa/runtime/parselogs.py
+++ b/meta/lib/oeqa/runtime/parselogs.py
@@ -46,13 +46,14 @@ x86_common = [
 qemux86_common = [
     'Fast TSC calibration', 
     'wrong ELF class',
+    "fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.",
+    "can't claim BAR ",
 ] + common_errors
 
 ignore_errors = { 
     'default' : common_errors,
     'qemux86' : [
-        'Failed to access perfctr msr (MSR c1 is 0)',
-        "fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.",
+        'Failed to access perfctr msr (MSR',
         ] + qemux86_common,
     'qemux86-64' : qemux86_common,
     'qemumips' : [
@@ -248,4 +249,4 @@ class ParseLogsTest(oeRuntimeTest):
                 self.msg +=  result[str(log)][str(error)]+"\n"
                 self.msg +=  "***********************\n"
         self.msg += "%s errors found in logs." % errcount
-        self.assertEqual(errcount, 0, msg=self.msg)
\ No newline at end of file
+        self.assertEqual(errcount, 0, msg=self.msg)



More information about the Openembedded-commits mailing list