summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/runqueue.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/runqueue.py')
-rw-r--r--bitbake/lib/bb/runqueue.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index 27d8db5f59..ca71d213d3 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -1943,6 +1943,10 @@ class RunQueueExecute:
1943 logger.error("Scenequeue had holdoff tasks: %s" % pprint.pformat(self.holdoff_tasks)) 1943 logger.error("Scenequeue had holdoff tasks: %s" % pprint.pformat(self.holdoff_tasks))
1944 err = True 1944 err = True
1945 1945
1946 for tid in self.scenequeue_covered.intersection(self.scenequeue_notcovered):
1947 # No task should end up in both covered and uncovered, that is a bug.
1948 logger.error("Setscene task %s in both covered and notcovered." % tid)
1949
1946 for tid in self.rqdata.runq_setscene_tids: 1950 for tid in self.rqdata.runq_setscene_tids:
1947 if tid not in self.scenequeue_covered and tid not in self.scenequeue_notcovered: 1951 if tid not in self.scenequeue_covered and tid not in self.scenequeue_notcovered:
1948 err = True 1952 err = True