summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@arm.com>2023-03-23 12:54:04 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-04-04 17:46:24 +0100
commitb99bc8c33f165e73265f8ca34bff6075129dac3d (patch)
treefa5a7d0dab08c246a7f957c5216046d6bec48f20 /scripts
parentc8dcc24807812127e8952f8144a85f40449422e6 (diff)
downloadpoky-b99bc8c33f165e73265f8ca34bff6075129dac3d.tar.gz
scripts/lib/buildstats: handle top-level build_stats not being complete
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. (From OE-Core rev: 6c9ca2f2de98c84d11beccbfde7c1e26cb25dfb6) 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> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/lib/buildstats.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/lib/buildstats.py b/scripts/lib/buildstats.py
index fa94c65539..6db60d5bcf 100644
--- a/scripts/lib/buildstats.py
+++ b/scripts/lib/buildstats.py
@@ -234,6 +234,7 @@ class BuildStats(dict):
234 """ 234 """
235 Parse the top-level build_stats file for build-wide start and duration. 235 Parse the top-level build_stats file for build-wide start and duration.
236 """ 236 """
237 start = elapsed = 0
237 with open(path) as fobj: 238 with open(path) as fobj:
238 for line in fobj.readlines(): 239 for line in fobj.readlines():
239 key, val = line.split(':', 1) 240 key, val = line.split(':', 1)