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:36:12 +0100 |
commit | f5bdf41e78ff378fe23d8ba1543917bc64def62f (patch) | |
tree | 1e7abf571d3948c4109299c54411f66f379350ce | |
parent | afc4412f9ff14dd45aba6a47bfc87e703f3c4763 (diff) | |
download | openembedded-core-f5bdf41e78ff378fe23d8ba1543917bc64def62f.tar.gz openembedded-core-f5bdf41e78ff378fe23d8ba1543917bc64def62f.tar.bz2 openembedded-core-f5bdf41e78ff378fe23d8ba1543917bc64def62f.zip |
oeqa/parselogs: Ignore qemu usbhid errors
These are harmless from the USB pointer device we install, ignore them.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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"] 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) |