mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-04-01 13:20:30 +00:00
Use print(end='') to silence double newline
Signed-off-by: Bence Szépkúti <bence.szepkuti@arm.com>
This commit is contained in:
parent
d2ea2c0df3
commit
c2bac00530
@ -58,7 +58,7 @@ def main():
|
|||||||
expected_failures = []
|
expected_failures = []
|
||||||
unexpected_failures = []
|
unexpected_failures = []
|
||||||
for line in proc.stdout:
|
for line in proc.stdout:
|
||||||
print(line[:-1])
|
print(line, end='')
|
||||||
match = test_re.match(line)
|
match = test_re.match(line)
|
||||||
if match is not None:
|
if match is not None:
|
||||||
if match.group(1) is not None:
|
if match.group(1) is not None:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user