From f5bdf41e78ff378fe23d8ba1543917bc64def62f Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Wed, 1 Oct 2014 16:57:43 +0100 Subject: oeqa/parselogs: Ignore qemu usbhid errors These are harmless from the USB pointer device we install, ignore them. Signed-off-by: Richard Purdie --- meta/lib/oeqa/runtime/parselogs.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'meta/lib/oeqa/runtime/parselogs.py') 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) -- cgit 1.2.3-korg