From: Richard Purdie Date: Wed, 1 Oct 2014 15:57:43 +0000 (+0100) Subject: oeqa/parselogs: Ignore qemu usbhid errors X-Git-Tag: 2015-4~1424 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=f5bdf41e78ff378fe23d8ba1543917bc64def62f;p=openembedded-core.git oeqa/parselogs: Ignore qemu usbhid errors These are harmless from the USB pointer device we install, ignore them. Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oeqa/runtime/parselogs.py b/meta/lib/oeqa/runtime/parselogs.py index 604a29a21c..42cb1b5e6f 100644 --- a/meta/lib/oeqa/runtime/parselogs.py +++ b/meta/lib/oeqa/runtime/parselogs.py @@ -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) \ No newline at end of file + self.assertEqual(errcount, 0, msg=self.msg)