]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core.git/commitdiff
scripts/lib/buildstats: handle top-level build_stats not being complete
authorRoss Burton <ross.burton@arm.com>
Thu, 23 Mar 2023 12:54:04 +0000 (12:54 +0000)
committerSteve Sakoman <steve@sakoman.com>
Thu, 30 Mar 2023 14:10:26 +0000 (04:10 -1000)
If we try to parse a buildstats directory which was either aborted or
is still being built then the top-level build_stats file doesn't
contain an elapsed value which causes an exception:

UnboundLocalError: local variable 'elapsed' referenced before assignment

Default both start and elapsed to 0 so that the parse succeeds.

Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 701d985aa8f2e9c2b9c0736fa25b424f3701889e)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
scripts/lib/buildstats.py

index fa94c65539945490a171f7f1a81319a339fde86f..6db60d5bcf292f2503731bd5f45660d80863bb40 100644 (file)
@@ -234,6 +234,7 @@ class BuildStats(dict):
         """
         Parse the top-level build_stats file for build-wide start and duration.
         """
+        start = elapsed = 0
         with open(path) as fobj:
             for line in fobj.readlines():
                 key, val = line.split(':', 1)