qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 0/1] tests/acceptance: set VM socket encoding to UTF-8


From: Daniele Buono
Subject: [PATCH 0/1] tests/acceptance: set VM socket encoding to UTF-8
Date: Tue, 21 Jul 2020 08:55:21 -0400

Some of the acceptance tests were failing for me with an error while
decoding characters coming from the VMs running for the test.

The error looked like this:

(30/36) 
tests/acceptance/boot_linux_console.py:BootLinuxConsole.test_nios2_10m50: 
ERROR: 'ascii' codec can't decode byte 0xc2 in position 36: ordinal not in 
range(128) (1.29 s)

The very same test is running fine on GitLab CI

An investigation of the issue shows that the socket we are using between
QEMU and AVOCADO is using the default encoding of the host OS. In my
case, locale was set to plain ASCII with LANG=C. Setting it to a UTF-8
locale fixed the issue, but a safer approach should be to just tell
Python to always use a UTF-8 charset for the socket. This is what the
patch does.

Daniele Buono (1):
  tests/acceptance: set VM socket encoding to UTF-8

 tests/acceptance/avocado_qemu/__init__.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
2.26.2




reply via email to

[Prev in Thread] Current Thread [Next in Thread]