aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
Diffstat (limited to 'testing')
-rw-r--r--testing/runner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/runner.py b/testing/runner.py
index f86bdeebf..6c3eef388 100644
--- a/testing/runner.py
+++ b/testing/runner.py
@@ -163,11 +163,11 @@ class TestRunner(object):
print(*args, file=output, **kw)
# 'for line in input:' would read into too large chunks
+ labelled = True
while True:
line = input.readline()
if not line:
break
- labelled = True
if line.startswith('BEGIN_FILE'):
labelled = False
txt = line.rstrip()