aboutsummaryrefslogtreecommitdiffstats
path: root/xtesting/core/feature.py
diff options
context:
space:
mode:
authorCédric Ollivier <ollivier.cedric@gmail.com>2019-05-25 09:55:02 +0200
committerCédric Ollivier <ollivier.cedric@gmail.com>2019-05-25 09:55:02 +0200
commit12aa6e34ec1f388a40cb5a00826729f7c0d6f201 (patch)
tree93a47239bb31da0446c9944f1ce7147407178c92 /xtesting/core/feature.py
parent934e90a269ea6b65e38578ac3f9a8bf7fc5212b1 (diff)
Set utf-8 in decode and encode calls
It eases backporting in iruya and hunter as a few logs can't be decoded as ascii [1]. [1] https://build.opnfv.org/ci/job/functest-opnfv-functest-vnf-iruya-juju_epc-run/56/console Change-Id: I09c793469bdf4a679e6ed5a268e705efa5f2a20f Signed-off-by: Cédric Ollivier <ollivier.cedric@gmail.com>
Diffstat (limited to 'xtesting/core/feature.py')
-rw-r--r--xtesting/core/feature.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/xtesting/core/feature.py b/xtesting/core/feature.py
index 6d5d7410..f28e720c 100644
--- a/xtesting/core/feature.py
+++ b/xtesting/core/feature.py
@@ -113,8 +113,8 @@ class BashFeature(Feature):
stderr=subprocess.STDOUT)
for line in iter(process.stdout.readline, b''):
if console:
- sys.stdout.write(line.decode())
- f_stdout.write(line.decode())
+ sys.stdout.write(line.decode("utf-8"))
+ f_stdout.write(line.decode("utf-8"))
process.wait()
with open(self.result_file, 'r') as f_stdin:
self.__logger.debug("$ %s\n%s", cmd, f_stdin.read().rstrip())