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: 2015-4~4222 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=0c30a25c3d5f7fb1087dff45e01595329620235f;p=openembedded-core.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 add8009d47..1161e593dc 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()