Use print(end='') to silence double newline

Signed-off-by: Bence Szépkúti <bence.szepkuti@arm.com>
This commit is contained in:
Bence Szépkúti 2021-10-25 20:58:14 +02:00
parent f54a9d2adf
commit faf7f1b554

View File

@ -58,7 +58,7 @@ def main():
expected_failures = []
unexpected_failures = []
for line in proc.stdout:
print(line[:-1])
print(line, end='')
match = test_re.match(line)
if match is not None:
if match.group(1) is not None: