mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 00:20:08 +00:00
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. (From OE-Core rev: 312417c182267584141d4ba62458bdd1d9d9ccb9) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
672517e071
commit
7b33ced7d2
@@ -46,13 +46,14 @@ x86_common = [
|
|||||||
qemux86_common = [
|
qemux86_common = [
|
||||||
'Fast TSC calibration',
|
'Fast TSC calibration',
|
||||||
'wrong ELF class',
|
'wrong ELF class',
|
||||||
|
"fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.",
|
||||||
|
"can't claim BAR ",
|
||||||
] + common_errors
|
] + common_errors
|
||||||
|
|
||||||
ignore_errors = {
|
ignore_errors = {
|
||||||
'default' : common_errors,
|
'default' : common_errors,
|
||||||
'qemux86' : [
|
'qemux86' : [
|
||||||
'Failed to access perfctr msr (MSR c1 is 0)',
|
'Failed to access perfctr msr (MSR',
|
||||||
"fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.",
|
|
||||||
] + qemux86_common,
|
] + qemux86_common,
|
||||||
'qemux86-64' : qemux86_common,
|
'qemux86-64' : qemux86_common,
|
||||||
'qemumips' : [
|
'qemumips' : [
|
||||||
@@ -248,4 +249,4 @@ class ParseLogsTest(oeRuntimeTest):
|
|||||||
self.msg += result[str(log)][str(error)]+"\n"
|
self.msg += result[str(log)][str(error)]+"\n"
|
||||||
self.msg += "***********************\n"
|
self.msg += "***********************\n"
|
||||||
self.msg += "%s errors found in logs." % errcount
|
self.msg += "%s errors found in logs." % errcount
|
||||||
self.assertEqual(errcount, 0, msg=self.msg)
|
self.assertEqual(errcount, 0, msg=self.msg)
|
||||||
|
|||||||
Reference in New Issue
Block a user