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.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index 6ea022e424..2b81540a14 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -1054,7 +1054,7 @@ class RunQueueExecute:
1054 self.build_pipes[result[0]].close() 1054 self.build_pipes[result[0]].close()
1055 del self.build_pipes[result[0]] 1055 del self.build_pipes[result[0]]
1056 if result[1] != 0: 1056 if result[1] != 0:
1057 self.task_fail(task, result[1]) 1057 self.task_fail(task, result[1]>>8)
1058 else: 1058 else:
1059 self.task_complete(task) 1059 self.task_complete(task)
1060 1060
@@ -1259,7 +1259,9 @@ class RunQueueExecuteTasks(RunQueueExecute):
1259 Called when a task has failed 1259 Called when a task has failed
1260 Updates the state engine with the failure 1260 Updates the state engine with the failure
1261 """ 1261 """
1262 logger.error("Task %s (%s) failed with %s" % (task, self.rqdata.get_user_idstring(task), exitcode)) 1262 logger.error("Task %s (%s) failed with exit code '%s'", task,
1263 self.rqdata.get_user_idstring(task), exitcode)
1264
1263 self.stats.taskFailed() 1265 self.stats.taskFailed()
1264 fnid = self.rqdata.runq_fnid[task] 1266 fnid = self.rqdata.runq_fnid[task]
1265 self.failed_fnids.append(fnid) 1267 self.failed_fnids.append(fnid)