From: Klement Sekera Date: Tue, 29 Jan 2019 10:49:09 +0000 (+0100) Subject: make test: fix logging X-Git-Tag: v19.04-rc1~547 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F39%2F17139%2F3;p=vpp.git make test: fix logging Change-Id: I3867d50746f0f424c8e94929171363e5b2e4d470 Signed-off-by: Klement Sekera --- diff --git a/test/framework.py b/test/framework.py index 2a2dfd4b11f..9151fa5462d 100644 --- a/test/framework.py +++ b/test/framework.py @@ -532,7 +532,7 @@ class VppTestCase(unittest.TestCase): stderr_log(single_line_delim) stderr_log('VPP output to stderr while running %s:', cls.__name__) stderr_log(single_line_delim) - vpp_output = "".join(str(cls.vpp_stderr_deque)) + vpp_output = "".join(cls.vpp_stderr_deque) with open(cls.tempdir + '/vpp_stderr.txt', 'w') as f: f.write(vpp_output) stderr_log('\n%s', vpp_output)