diff options
author | Daniel Latypov <dlatypov@google.com> | 2021-10-21 01:21:21 +0200 |
---|---|---|
committer | Shuah Khan <skhan@linuxfoundation.org> | 2021-10-25 21:06:45 +0200 |
commit | 2ab5d5e67f7ab2d2ecf67b8855ac65691f4e4b4d (patch) | |
tree | 97f7b0e9fc40440d954b837816fd1b0827cdb973 /drivers/regulator/hi6421v600-regulator.c | |
parent | kunit: Reset suite count after running tests (diff) | |
download | linux-2ab5d5e67f7ab2d2ecf67b8855ac65691f4e4b4d.tar.xz linux-2ab5d5e67f7ab2d2ecf67b8855ac65691f4e4b4d.zip |
kunit: tool: continue past invalid utf-8 output
kunit.py currently crashes and fails to parse kernel output if it's not
fully valid utf-8.
This can come from memory corruption or just inadvertently printing
out binary data as strings.
E.g. adding this line into a kunit test
pr_info("\x80")
will cause this exception
UnicodeDecodeError: 'utf-8' codec can't decode byte 0x80 in position
1961: invalid start byte
We can tell Python how to handle errors, see
https://docs.python.org/3/library/codecs.html#error-handlers
Unfortunately, it doesn't seem like there's a way to specify this in
just one location, so we need to repeat ourselves quite a bit.
Specify `errors='backslashreplace'` so we instead:
* print out the offending byte as '\x80'
* try and continue parsing the output.
* as long as the TAP lines themselves are valid, we're fine.
Fixed spelling/grammar in commit log:
Shuah Khan <<skhan@linuxfoundation.org>
Signed-off-by: Daniel Latypov <dlatypov@google.com>
Reviewed-by: Brendan Higgins <brendanhiggins@google.com>
Tested-by: David Gow <davidgow@google.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Diffstat (limited to 'drivers/regulator/hi6421v600-regulator.c')
0 files changed, 0 insertions, 0 deletions