mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-25 02:02:03 +03:00
Use print(end='') to silence double newline
Signed-off-by: Bence Szépkúti <bence.szepkuti@arm.com>
This commit is contained in:
@ -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:
|
||||||
|
Reference in New Issue
Block a user