summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/parselogs.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2014-10-01 16:57:43 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-10-02 00:42:44 +0100
commit399192d1564fb7e6dff0aca2ec24470a17581dd3 (patch)
tree1a74fe888517657f0697fe2da343ed0078b25a3e /meta/lib/oeqa/runtime/parselogs.py
parent0eeba11754dd25d5008711c6362fcac284984a8f (diff)
downloadpoky-399192d1564fb7e6dff0aca2ec24470a17581dd3.tar.gz
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>
Diffstat (limited to 'meta/lib/oeqa/runtime/parselogs.py')
-rw-r--r--meta/lib/oeqa/runtime/parselogs.py4
1 files changed, 3 insertions, 1 deletions
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"]
9common_errors = [ 9common_errors = [
10 '(WW) warning, (EE) error, (NI) not implemented, (??) unknown.', 10 '(WW) warning, (EE) error, (NI) not implemented, (??) unknown.',
11 'dma timeout', 11 'dma timeout',
12 'can\'t add hid device:',
13 'usbhid: probe of ',
12 ] 14 ]
13 15
14x86_common = [ 16x86_common = [
@@ -173,4 +175,4 @@ class ParseLogsTest(oeRuntimeTest):
173 self.msg += result[str(log)][str(error)]+"\n" 175 self.msg += result[str(log)][str(error)]+"\n"
174 self.msg += "***********************\n" 176 self.msg += "***********************\n"
175 self.msg += "%s errors found in logs." % errcount 177 self.msg += "%s errors found in logs." % errcount
176 self.assertEqual(errcount, 0, msg=self.msg) \ No newline at end of file 178 self.assertEqual(errcount, 0, msg=self.msg)