1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-30 12:29:55 +00:00

bitbake: Transfer noexec runqueue messages to the UI

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Richard Purdie
2011-01-01 14:36:38 +00:00
parent fcba92f354
commit 2b7c2a8420
2 changed files with 16 additions and 12 deletions
+9 -2
View File
@@ -193,9 +193,16 @@ def main(server, eventHandler):
continue
if isinstance(event, bb.runqueue.runQueueTaskStarted):
logger.info("Running task %s of %s (ID: %s, %s)",
event.stats.completed + event.stats.active + event.stats.failed + 1,
if event.noexec:
tasktype = 'noexec task'
else:
tasktype = 'task'
logger.info("Running %s %s of %s (ID: %s, %s)",
tasktype,
event.stats.completed + event.stats.active +
event.stats.failed + 1,
event.stats.total, event.taskid, event.taskstring)
continue
if isinstance(event, bb.runqueue.runQueueTaskFailed):