[bitbake-devel] Richard Purdie : bitbake/runqueue.py: Sort the list of skipped tasks as it makes searching the list easier when debugging

git at git.openembedded.org git at git.openembedded.org
Tue Nov 22 13:08:39 UTC 2011


Module: bitbake.git
Branch: master
Commit: 78c02276c7d445403af285f8870a7a2d5a8f4a4b
URL:    http://git.openembedded.org/?p=bitbake.git&a=commit;h=78c02276c7d445403af285f8870a7a2d5a8f4a4b

Author: Richard Purdie <richard.purdie at linuxfoundation.org>
Date:   Mon Nov 21 14:40:21 2011 +0000

bitbake/runqueue.py: Sort the list of skipped tasks as it makes searching the list easier when debugging

Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 lib/bb/runqueue.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index 69a703d..6cc6ab2 100644
--- a/lib/bb/runqueue.py
+++ b/lib/bb/runqueue.py
@@ -1635,7 +1635,7 @@ class RunQueueExecuteScenequeue(RunQueueExecute):
         for task in oldcovered:
             self.rq.scenequeue_covered.add(self.rqdata.runq_setscene[task])
 
-        logger.debug(1, 'We can skip tasks %s', self.rq.scenequeue_covered)
+        logger.debug(1, 'We can skip tasks %s', sorted(self.rq.scenequeue_covered))
 
         self.rq.state = runQueueRunInit
         return True





More information about the bitbake-devel mailing list