summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2019-12-04 11:31:34 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-01-11 11:06:22 +0000
commitafd002529007f1fefc3fc0ed680eb6d4e9494a5d (patch)
tree2822b606b89ad03ec8cad9434504ea08b8f12574 /bitbake
parentb8f326a7783ab9b0298f2f55323744482dddbe0b (diff)
downloadpoky-afd002529007f1fefc3fc0ed680eb6d4e9494a5d.tar.gz
bitbake: runqueue: Add extra debugging when locked sigs mismatches occur
(Bitbake rev: 6f0b82627edc82601f80f0f096bf96db43afefa8) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 3aad9978be2a40d4c535a5ae092f374ba2a5f627) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/runqueue.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index a869ba527a..246a9cdb64 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -2524,6 +2524,8 @@ class RunQueueExecute:
2524 msg = 'Task %s.%s attempted to execute unexpectedly and should have been setscened' % (pn, taskname) 2524 msg = 'Task %s.%s attempted to execute unexpectedly and should have been setscened' % (pn, taskname)
2525 else: 2525 else:
2526 msg = 'Task %s.%s attempted to execute unexpectedly' % (pn, taskname) 2526 msg = 'Task %s.%s attempted to execute unexpectedly' % (pn, taskname)
2527 for t in self.scenequeue_notcovered:
2528 msg = msg + "\nTask %s, unihash %s, taskhash %s" % (t, self.rqdata.runtaskentries[t].unihash, self.rqdata.runtaskentries[t].hash)
2527 logger.error(msg + '\nThis is usually due to missing setscene tasks. Those missing in this build were: %s' % pprint.pformat(self.scenequeue_notcovered)) 2529 logger.error(msg + '\nThis is usually due to missing setscene tasks. Those missing in this build were: %s' % pprint.pformat(self.scenequeue_notcovered))
2528 return True 2530 return True
2529 return False 2531 return False