summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/runqueue.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/runqueue.py')
-rw-r--r--bitbake/lib/bb/runqueue.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index aedf935476..a7a84630d7 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -485,7 +485,7 @@ class RunQueueData:
485 msgs.append(" Task %s (dependent Tasks %s)\n" % (dep, self.runq_depends_names(self.runtaskentries[dep].depends))) 485 msgs.append(" Task %s (dependent Tasks %s)\n" % (dep, self.runq_depends_names(self.runtaskentries[dep].depends)))
486 msgs.append("\n") 486 msgs.append("\n")
487 if len(valid_chains) > 10: 487 if len(valid_chains) > 10:
488 msgs.append("Aborted dependency loops search after 10 matches.\n") 488 msgs.append("Halted dependency loops search after 10 matches.\n")
489 raise TooManyLoops 489 raise TooManyLoops
490 continue 490 continue
491 scan = False 491 scan = False
@@ -989,7 +989,7 @@ class RunQueueData:
989 989
990 # Check to make sure we still have tasks to run 990 # Check to make sure we still have tasks to run
991 if not self.runtaskentries: 991 if not self.runtaskentries:
992 if not taskData[''].abort: 992 if not taskData[''].halt:
993 bb.msg.fatal("RunQueue", "All buildable tasks have been run but the build is incomplete (--continue mode). Errors for the tasks that failed will have been printed above.") 993 bb.msg.fatal("RunQueue", "All buildable tasks have been run but the build is incomplete (--continue mode). Errors for the tasks that failed will have been printed above.")
994 else: 994 else:
995 bb.msg.fatal("RunQueue", "No active tasks and not in --continue mode?! Please report this bug.") 995 bb.msg.fatal("RunQueue", "No active tasks and not in --continue mode?! Please report this bug.")
@@ -1424,7 +1424,7 @@ class RunQueue:
1424 """ 1424 """
1425 Run the tasks in a queue prepared by rqdata.prepare() 1425 Run the tasks in a queue prepared by rqdata.prepare()
1426 Upon failure, optionally try to recover the build using any alternate providers 1426 Upon failure, optionally try to recover the build using any alternate providers
1427 (if the abort on failure configuration option isn't set) 1427 (if the halt on failure configuration option isn't set)
1428 """ 1428 """
1429 1429
1430 retval = True 1430 retval = True
@@ -1929,7 +1929,7 @@ class RunQueueExecute:
1929 1929
1930 bb.event.fire(runQueueTaskFailed(task, self.stats, exitcode, self.rq, fakeroot_log=("".join(fakeroot_log) or None)), self.cfgData) 1930 bb.event.fire(runQueueTaskFailed(task, self.stats, exitcode, self.rq, fakeroot_log=("".join(fakeroot_log) or None)), self.cfgData)
1931 1931
1932 if self.rqdata.taskData[''].abort: 1932 if self.rqdata.taskData[''].halt:
1933 self.rq.state = runQueueCleanUp 1933 self.rq.state = runQueueCleanUp
1934 1934
1935 def task_skip(self, task, reason): 1935 def task_skip(self, task, reason):
@@ -2392,7 +2392,7 @@ class RunQueueExecute:
2392 self.tasks_scenequeue_done.remove(tid) 2392 self.tasks_scenequeue_done.remove(tid)
2393 for dep in self.sqdata.sq_covered_tasks[tid]: 2393 for dep in self.sqdata.sq_covered_tasks[tid]:
2394 if dep in self.runq_complete and dep not in self.runq_tasksrun: 2394 if dep in self.runq_complete and dep not in self.runq_tasksrun:
2395 bb.error("Task %s marked as completed but now needing to rerun? Aborting build." % dep) 2395 bb.error("Task %s marked as completed but now needing to rerun? Halting build." % dep)
2396 self.failed_tids.append(tid) 2396 self.failed_tids.append(tid)
2397 self.rq.state = runQueueCleanUp 2397 self.rq.state = runQueueCleanUp
2398 return 2398 return
@@ -2710,7 +2710,7 @@ def build_scenequeue_data(sqdata, rqdata, rq, cooker, stampcache, sqrq):
2710 if tid in rqdata.runq_setscene_tids: 2710 if tid in rqdata.runq_setscene_tids:
2711 pass 2711 pass
2712 elif sq_revdeps_squash[tid]: 2712 elif sq_revdeps_squash[tid]:
2713 bb.msg.fatal("RunQueue", "Something went badly wrong during scenequeue generation, aborting. Please report this problem.") 2713 bb.msg.fatal("RunQueue", "Something went badly wrong during scenequeue generation, halting. Please report this problem.")
2714 else: 2714 else:
2715 del sq_revdeps_squash[tid] 2715 del sq_revdeps_squash[tid]
2716 rqdata.init_progress_reporter.update(taskcounter) 2716 rqdata.init_progress_reporter.update(taskcounter)