]> code.ossystems Code Review - openembedded-core.git/commit
oeqa/ssh: Avoid unicode decode exceptions
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 1 May 2019 07:00:00 +0000 (08:00 +0100)
committerArmin Kuster <akuster808@gmail.com>
Sat, 11 May 2019 15:32:01 +0000 (08:32 -0700)
commit918e15e22c797d52d33c3399324e480aa1a2cc7f
tree76263b32820c19e38e92b6ce036cd46e40748cf8
parent5979289d5f306d37fe5c8ed994bb833f2492ef32
oeqa/ssh: Avoid unicode decode exceptions

This code really needs to be rewritten to not split potential
multibyte characters, for now work around it to avoid exceptions like:

  File "/home/pokybuild/yocto-worker/qa-extras2/build/meta/lib/oeqa/core/target/ssh.py", line 211, in run
    data = reader.read(1024, 4096)
  File "/usr/lib64/python3.6/codecs.py", line 503, in read
    newchars, decodedbytes = self.decode(data, self.errors)
UnicodeDecodeError: 'utf-8' codec can't decode byte 0x92 in position 0: invalid start byte

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
meta/lib/oeqa/core/target/ssh.py