[oe-commits] [bitbake] branch master-next updated: runqueue: Handle covered tasks when rehashing

git at git.openembedded.org git at git.openembedded.org
Thu Aug 8 21:50:55 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository bitbake.

The following commit(s) were added to refs/heads/master-next by this push:
     new a93ca22  runqueue: Handle covered tasks when rehashing
a93ca22 is described below

commit a93ca226f926f3b31a5f8c8a349c71771a236067
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Thu Aug 8 22:45:29 2019 +0100

    runqueue: Handle covered tasks when rehashing
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/runqueue.py | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index bb61087..e2db0ef 100644
--- a/lib/bb/runqueue.py
+++ b/lib/bb/runqueue.py
@@ -2241,6 +2241,8 @@ class RunQueueExecute:
                         self.tasks_scenequeue_done.remove(dep)
                     if dep in self.tasks_notcovered:
                         self.tasks_notcovered.remove(dep)
+                    if dep in self.tasks_covered:
+                        self.tasks_covered.remove(dep)
 
             if tid in self.sq_buildable:
                 self.sq_buildable.remove(tid)
@@ -2254,6 +2256,8 @@ class RunQueueExecute:
                 self.sqdata.outrightfail.remove(tid)
             if tid in self.scenequeue_notcovered:
                 self.scenequeue_notcovered.remove(tid)
+            if tid in self.scenequeue_covered:
+                self.scenequeue_covered.remove(tid)
 
             (mc, fn, taskname, taskfn) = split_tid_mcfn(tid)
             self.sqdata.stamps[tid] = bb.build.stampfile(taskname + "_setscene", self.rqdata.dataCaches[mc], taskfn, noextra=True)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list