aboutsummaryrefslogtreecommitdiffstats
path: root/testing/runner.py
diff options
context:
space:
mode:
authorChristian Tismer <tismer@stackless.com>2017-12-21 19:44:25 +0100
committerChristian Tismer <tismer@stackless.com>2017-12-22 12:52:54 +0000
commita18994c2ff7836a5b6998f6aee24583d920dad80 (patch)
tree9e6f0e1c1df5e5f1ae0acc5d09bd91326d9fce89 /testing/runner.py
parent5c7e140036e26d8dad27ef8b7da984f093e97787 (diff)
small enhancement for testrunner
The new testrunner now has the multiple test feature. We refine and correct the summary view a little bit, remove more dead code, add some comments and improve the output slightly. Change-Id: I152bf5cbe2171fb07de7e88054a42fc767dc14c0 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Simo Fält <simo.falt@qt.io>
Diffstat (limited to 'testing/runner.py')
-rw-r--r--testing/runner.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/testing/runner.py b/testing/runner.py
index 90076f582..a993c3a5c 100644
--- a/testing/runner.py
+++ b/testing/runner.py
@@ -148,6 +148,7 @@ class TestRunner(object):
def xprint(*args, **kw):
print(*args, file=output, **kw)
+ # 'for line in input:' would read into too large chunks
while True:
line = input.readline()
if not line: