mirror of
https://git.yoctoproject.org/poky
synced 2026-04-17 18:32:12 +02:00
bitbake: runqueue: Add setscene task overlap sanity check
We've seen hard to debug issues where a task ends up in both the covered and notcovered list. Add a sanity check to ensure if this happens in future, we see it in the logs. (Bitbake rev: 947c2ad65e4c59d01c603f767f11f9aa86b69264) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 6e001410854792f9bb66a0409a2ac176171b0507) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -1942,6 +1942,10 @@ class RunQueueExecute:
|
||||
logger.error("Scenequeue had holdoff tasks: %s" % pprint.pformat(self.holdoff_tasks))
|
||||
err = True
|
||||
|
||||
for tid in self.scenequeue_covered.intersection(self.scenequeue_notcovered):
|
||||
# No task should end up in both covered and uncovered, that is a bug.
|
||||
logger.error("Setscene task %s in both covered and notcovered." % tid)
|
||||
|
||||
for tid in self.rqdata.runq_setscene_tids:
|
||||
if tid not in self.scenequeue_covered and tid not in self.scenequeue_notcovered:
|
||||
err = True
|
||||
|
||||
Reference in New Issue
Block a user