From: Stefan Stanacar Date: Wed, 18 Dec 2013 18:31:55 +0000 (+0200) Subject: testimage: include traceback when loading a test fails X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~35059 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0c30a25c3d5f7fb1087dff45e01595329620235f;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git testimage: include traceback when loading a test fails Makes it much easier to figure out where a syntax error is. Signed-off-by: Stefan Stanacar Signed-off-by: Saul Wold --- diff --git a/meta/classes/testimage.bbclass b/meta/classes/testimage.bbclass index add8009d47a..1161e593dcb 100644 --- a/meta/classes/testimage.bbclass +++ b/meta/classes/testimage.bbclass @@ -122,7 +122,8 @@ def testimage_main(d): try: loadTests(tc) except Exception as e: - bb.fatal("Loading tests failed:\n %s" % e) + import traceback + bb.fatal("Loading tests failed:\n%s" % traceback.format_exc()) target.deploy()