summaryrefslogtreecommitdiff
path: root/Test/runTests.py
diff options
context:
space:
mode:
authorGravatar Clément Pit--Claudel <clement.pitclaudel@live.com>2015-08-12 11:41:59 -0700
committerGravatar Clément Pit--Claudel <clement.pitclaudel@live.com>2015-08-12 11:41:59 -0700
commit9e1b3ef9e63eb9c823d275927b7a62cdfab576b2 (patch)
tree315847ecfcd504fa381a27c257037d4d1cb76ae4 /Test/runTests.py
parentc978cd18f8dfba5bfac92af792041c5b4756de5a (diff)
runTests.py: Pretty-print stderr output to TRACE upon test failure
Diffstat (limited to 'Test/runTests.py')
-rw-r--r--Test/runTests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Test/runTests.py b/Test/runTests.py
index ebdb0655..0232f81b 100644
--- a/Test/runTests.py
+++ b/Test/runTests.py
@@ -231,7 +231,7 @@ class Test:
with open(self.temp_output_path, mode='ab') as writer:
writer.write(stdout + stderr)
if stderr != b"":
- debug(Debug.TRACE, stderr)
+ debug(Debug.TRACE, stderr.decode("utf-8"))
self.update_status()
except TimeoutExpired: