mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-03-25 13:43:31 +00:00
Fix pylint errors
Signed-off-by: David Horstmann <david.horstmann@arm.com>
This commit is contained in:
parent
41c316d3b2
commit
fd9264e65b
@ -125,8 +125,11 @@ def main(library_build_dir: str):
|
|||||||
)
|
)
|
||||||
test = -1
|
test = -1
|
||||||
unexpected_successes = set(EXPECTED_FAILURES)
|
unexpected_successes = set(EXPECTED_FAILURES)
|
||||||
expected_failures = []
|
expected_failures = [] # type: List[int]
|
||||||
unexpected_failures = []
|
unexpected_failures = [] # type: List[int]
|
||||||
|
if proc.stdout is None:
|
||||||
|
return 1
|
||||||
|
|
||||||
for line in proc.stdout:
|
for line in proc.stdout:
|
||||||
print(line, end='')
|
print(line, end='')
|
||||||
match = test_re.match(line)
|
match = test_re.match(line)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user