Skip to content

Commit

Permalink
Tools: build_binaries_history.py: make size printing more pretty
Browse files Browse the repository at this point in the history
  • Loading branch information
khancyr authored and tridge committed Sep 30, 2020
1 parent abacfc9 commit d0e8857
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Tools/scripts/build_binaries_history.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,10 @@ def sizes_for_file(self, filepath):
text = int(sizes[0])
data = int(sizes[1])
bss = int(sizes[2])
print("text=%u" % text)
print("data=%u" % data)
print("bss=%u" % bss)
self.progress("Binary size of %s:" % filepath)
self.progress("text=%u" % text)
self.progress("data=%u" % data)
self.progress("bss=%u" % bss)
return (text, data, bss)

def assure_db_present(self):
Expand Down

0 comments on commit d0e8857

Please sign in to comment.