aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/runqueue.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2019-12-04 11:31:34 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-12-04 11:31:34 +0000
commit3aad9978be2a40d4c535a5ae092f374ba2a5f627 (patch)
treef3a9d24dec189904ed8bb698ec5de36fcb9617dd /lib/bb/runqueue.py
parent39098b4ba2133f4d9229a0aa4fcf4c3e1291286a (diff)
downloadbitbake-3aad9978be2a40d4c535a5ae092f374ba2a5f627.tar.gz
runqueue: Add extra debugging when locked sigs mismatches occur
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/runqueue.py')
-rw-r--r--lib/bb/runqueue.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index a869ba527..246a9cdb6 100644
--- a/lib/bb/runqueue.py
+++ b/lib/bb/runqueue.py
@@ -2524,6 +2524,8 @@ class RunQueueExecute:
msg = 'Task %s.%s attempted to execute unexpectedly and should have been setscened' % (pn, taskname)
else:
msg = 'Task %s.%s attempted to execute unexpectedly' % (pn, taskname)
+ for t in self.scenequeue_notcovered:
+ msg = msg + "\nTask %s, unihash %s, taskhash %s" % (t, self.rqdata.runtaskentries[t].unihash, self.rqdata.runtaskentries[t].hash)
logger.error(msg + '\nThis is usually due to missing setscene tasks. Those missing in this build were: %s' % pprint.pformat(self.scenequeue_notcovered))
return True
return False