mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-03-23 16:20:49 +00:00
code_size_compare.py: add missing aes.o in code size comparison
Signed-off-by: Yanray Wang <yanray.wang@arm.com>
This commit is contained in:
parent
369cd96176
commit
a3841ab299
@ -217,7 +217,7 @@ class CodeSizeComparison:
|
|||||||
print("Generating comparison results.")
|
print("Generating comparison results.")
|
||||||
|
|
||||||
old_ds = {}
|
old_ds = {}
|
||||||
for line in old_file.readlines()[1:]:
|
for line in old_file.readlines():
|
||||||
cols = line.split(", ")
|
cols = line.split(", ")
|
||||||
fname = cols[0]
|
fname = cols[0]
|
||||||
size = int(cols[1])
|
size = int(cols[1])
|
||||||
@ -225,7 +225,7 @@ class CodeSizeComparison:
|
|||||||
old_ds[fname] = size
|
old_ds[fname] = size
|
||||||
|
|
||||||
new_ds = {}
|
new_ds = {}
|
||||||
for line in new_file.readlines()[1:]:
|
for line in new_file.readlines():
|
||||||
cols = line.split(", ")
|
cols = line.split(", ")
|
||||||
fname = cols[0]
|
fname = cols[0]
|
||||||
size = int(cols[1])
|
size = int(cols[1])
|
||||||
|
Loading…
x
Reference in New Issue
Block a user