diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-10-01 16:57:43 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-10-02 00:42:44 +0100 |
commit | 399192d1564fb7e6dff0aca2ec24470a17581dd3 (patch) | |
tree | 1a74fe888517657f0697fe2da343ed0078b25a3e /meta/lib/oeqa/runtime/parselogs.py | |
parent | 0eeba11754dd25d5008711c6362fcac284984a8f (diff) | |
download | poky-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.py | 4 |
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"] | |||
9 | common_errors = [ | 9 | common_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 | ||
14 | x86_common = [ | 16 | x86_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) |