aboutsummaryrefslogtreecommitdiffstats
path: root/tests/system/shared
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@qt.io>2020-02-06 22:10:26 +0100
committerRobert Loehning <robert.loehning@qt.io>2020-02-07 11:08:42 +0000
commit11abdb9ddc7b278711e1780dab91cbe92dff9915 (patch)
tree202f74302cc5a85238c78f7c8644f06e38a71fdf /tests/system/shared
parente9f2178a4a81c79256eb75f5081b729d193029e8 (diff)
Squish: Fix error handling
Change-Id: I896ce824a0c75d47f7b123f80937e81793cc33e8 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'tests/system/shared')
-rw-r--r--tests/system/shared/build_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/system/shared/build_utils.py b/tests/system/shared/build_utils.py
index 30787224ad..9f2ed42ccb 100644
--- a/tests/system/shared/build_utils.py
+++ b/tests/system/shared/build_utils.py
@@ -57,7 +57,7 @@ def checkCompile():
waitFor("len(str(output.plainText))>0",5000)
if compileSucceeded(output.plainText):
if os.getenv("SYSTEST_DEBUG") == "1":
- test.log("Compile Output:\n%s" % output.plainText)
+ test.log("Compile Output:\n%s" % str(output.plainText))
test.passes("Compile successful")
return True
else: