tools/metrics.py: Use OrderedDict when reading build log.

So that the output (eg of the diff command) always has the lines in the
same order.
pull/5941/head
Damien George 2020-04-19 21:53:59 +10:00
rodzic 1cc24cd39a
commit 17dc86369f
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -43,7 +43,7 @@ Other commands:
"""
import sys, re, subprocess
import collections, sys, re, subprocess
MAKE_FLAGS = ["-j3", "CFLAGS_EXTRA=-DNDEBUG"]
@ -98,7 +98,7 @@ def parse_port_list(args):
def read_build_log(filename):
data = dict()
data = collections.OrderedDict()
lines = []
found_sizes = False
with open(filename) as f: