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