From: Richard Purdie Date: Mon, 29 Jun 2015 08:16:43 +0000 (+0100) Subject: oeqa/bbtests: Show useful failure message for gplv3 test X-Git-Tag: 2015-10~1411 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=e54437b7e7c5f1b8c33627b3914f896724207837;p=openembedded-core.git oeqa/bbtests: Show useful failure message for gplv3 test If this test fails the current output tells us nothing about what happened. Show the exit status and output to aid debugging. Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oeqa/selftest/bbtests.py b/meta/lib/oeqa/selftest/bbtests.py index f4f3884f7e..9bd34ee121 100644 --- a/meta/lib/oeqa/selftest/bbtests.py +++ b/meta/lib/oeqa/selftest/bbtests.py @@ -185,6 +185,6 @@ class BitbakeTests(oeSelfTest): ftools.append_file(conf ,data) self.addCleanup(ftools.remove_from_file, conf ,data) result = bitbake('readline', ignore_status=True) - self.assertEqual(result.status, 0) + self.assertEqual(result.status, 0, "Bitbake failed, exit code %s, output %s" % (result.status, result.output)) self.assertFalse(os.path.isfile(os.path.join(self.builddir, 'tmp/deploy/licenses/readline/generic_GPLv3'))) self.assertTrue(os.path.isfile(os.path.join(self.builddir, 'tmp/deploy/licenses/readline/generic_GPLv2')))