[oe-commits] [bitbake] 07/23: runqueue: Fix counter/task updating glitch

git at git.openembedded.org git at git.openembedded.org
Thu Jul 11 11:26:11 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.

commit ee732a0851df620c3014ac01ed9f6a69280a0465
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Wed Jul 10 23:33:05 2019 +0100

    runqueue: Fix counter/task updating glitch
    
    Some tasks were not being marked as covered/notcovered since internal
    calls were being made without using the external call points.
    
    Fix the accounting issues by using the correct external call points.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/runqueue.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index 80cc60e..c6f45a3 100644
--- a/lib/bb/runqueue.py
+++ b/lib/bb/runqueue.py
@@ -2044,7 +2044,7 @@ class RunQueueExecute:
         for dep in self.sqdata.sq_deps[task]:
             if fail and task in self.sqdata.sq_harddeps and dep in self.sqdata.sq_harddeps[task]:
                 logger.debug(2, "%s was unavailable and is a hard dependency of %s so skipping" % (task, dep))
-                self.scenequeue_updatecounters(dep, fail)
+                self.sq_task_failoutright(dep)
                 continue
             if task not in self.sqdata.sq_revdeps2[dep]:
                 # May already have been removed by the fail case above

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


More information about the Openembedded-commits mailing list