From 5bb24832761bd518cb0249125f67939e0cbd0998 Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Wed, 9 Jun 2010 19:26:21 -0700 Subject: Show a traceback when a task fails due to an exception Signed-off-by: Chris Larson --- lib/bb/runqueue.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py index 3699ad873..b07395df2 100644 --- a/lib/bb/runqueue.py +++ b/lib/bb/runqueue.py @@ -980,10 +980,11 @@ class RunQueue: try: self.cooker.tryBuild(fn, taskname[3:]) except bb.build.EventException: - bb.msg.error(bb.msg.domain.Build, "Build of " + fn + " " + taskname + " failed") os._exit(1) - except: - bb.msg.error(bb.msg.domain.Build, "Build of " + fn + " " + taskname + " failed") + except Exception: + from traceback import format_exc + bb.msg.error(bb.msg.domain.Build, "Build of %s %s failed" % (fn, taskname)) + bb.msg.error(bb.msg.domain.Build, format_exc()) os._exit(1) os._exit(0) -- cgit 1.2.3-korg