summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake')
-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 6186a83f80..2bb97b6ebd 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -1934,6 +1934,10 @@ class RunQueueExecute:
1934 logger.error("Scenequeue had holdoff tasks: %s" % pprint.pformat(self.holdoff_tasks)) 1934 logger.error("Scenequeue had holdoff tasks: %s" % pprint.pformat(self.holdoff_tasks))
1935 err = True 1935 err = True
1936 1936
1937 for tid in self.scenequeue_covered.intersection(self.scenequeue_notcovered):
1938 # No task should end up in both covered and uncovered, that is a bug.
1939 logger.error("Setscene task %s in both covered and notcovered." % tid)
1940
1937 for tid in self.rqdata.runq_setscene_tids: 1941 for tid in self.rqdata.runq_setscene_tids:
1938 if tid not in self.scenequeue_covered and tid not in self.scenequeue_notcovered: 1942 if tid not in self.scenequeue_covered and tid not in self.scenequeue_notcovered:
1939 err = True 1943 err = True