oeqa/parselogs: Ignore qemu usbhid errors

These are harmless from the USB pointer device we install, ignore them.

(From OE-Core rev: f5bdf41e78ff378fe23d8ba1543917bc64def62f)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2014-10-01 16:57:43 +01:00
parent 0eeba11754
commit 399192d156
1 changed files with 3 additions and 1 deletions

View File

@ -9,6 +9,8 @@ errors = ["error", "cannot", "can\'t", "failed"]
common_errors = [
'(WW) warning, (EE) error, (NI) not implemented, (??) unknown.',
'dma timeout',
'can\'t add hid device:',
'usbhid: probe of ',
]
x86_common = [
@ -173,4 +175,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)
self.assertEqual(errcount, 0, msg=self.msg)