You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After fixing #1175 preventing "tracing_smoke_test" from running on my Fedora 34 machine, I get a new failure for "make check":
TEST tracing_smoke_test
...
File "/home/nyh/osv.tmp2/osv/scripts/loader.py", line 1312, in save_traces_to_file
...
File "/home/nyh/osv.tmp2/osv/scripts/loader.py", line 1290, in one_cpu_trace
thread_name = thread_name.partition(b'\0')[0].decode()
UnicodeDecodeError: 'utf-8' codec can't decode byte 0x89 in position 2: invalid start byte
The thread_name we tried to decode was b'UH\x89\xf2H\x89\xfeH\x89\xe5SH\x8d}\xe8H' which doesn't look right.
@wkozaczuk I remember you recently did some patches around the tracing feature - did you change anything in its format that could break this test?
The text was updated successfully, but these errors were encountered:
After fixing #1175 preventing "tracing_smoke_test" from running on my Fedora 34 machine, I get a new failure for "make check":
The thread_name we tried to decode was
b'UH\x89\xf2H\x89\xfeH\x89\xe5SH\x8d}\xe8H'
which doesn't look right.@wkozaczuk I remember you recently did some patches around the tracing feature - did you change anything in its format that could break this test?
The text was updated successfully, but these errors were encountered: