summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorEd Bartosh <ed.bartosh@linux.intel.com>2016-09-05 14:27:35 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-09-06 10:36:34 +0100
commit57912de63fa83550c0ae658eb99b76e9cc91a8d1 (patch)
treeecf6a72e412ca58e288674ca21cd740c77eedb9a /lib
parent0f47b17fe88dc660648d94b2d8d8286d87ae6295 (diff)
downloadbitbake-contrib-57912de63fa83550c0ae658eb99b76e9cc91a8d1.tar.gz
cooker: record events on cooker exit
Bitbake collects all events in special event queue when called with -w option. However, it starts to write events to the eventlog only after BuildStarted event is received. In some cases this event is not received at all, e.g. when bitbake is run with --parse-only command line option. It makes sense to write all collected events when CookerExit event received to make sure all events are written into the eventlog even if BuildStarted event is not fired. [YOCTO #10145] Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/bb/cooker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/cooker.py b/lib/bb/cooker.py
index b7d7a7ec2..0e78106d2 100644
--- a/lib/bb/cooker.py
+++ b/lib/bb/cooker.py
@@ -141,7 +141,7 @@ class EventWriter:
else:
# init on bb.event.BuildStarted
name = "%s.%s" % (event.__module__, event.__class__.__name__)
- if name == "bb.event.BuildStarted":
+ if name in ("bb.event.BuildStarted", "bb.cooker.CookerExit"):
with open(self.eventfile, "w") as f:
f.write("%s\n" % json.dumps({ "allvariables" : self.cooker.getAllKeysWithFlags(["doc", "func"])}))