[oe-commits] [openembedded-core] 06/10: HACK: extra debug

git at git.openembedded.org git at git.openembedded.org
Fri Mar 6 08:20:39 UTC 2020


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 8aacc70f80548fb536371b935017743c34b6fbad
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Sat Feb 15 08:12:33 2020 +0000

    HACK: extra debug
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/lib/oeqa/selftest/cases/signing.py | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/meta/lib/oeqa/selftest/cases/signing.py b/meta/lib/oeqa/selftest/cases/signing.py
index 9ea3132..156400c 100644
--- a/meta/lib/oeqa/selftest/cases/signing.py
+++ b/meta/lib/oeqa/selftest/cases/signing.py
@@ -223,8 +223,13 @@ class LockedSignatures(OESelftestTestCase):
 
         extradebug = ""
         if not found_warn:
-            extradebug = bitbake(test_recipe + " -e").output
+            #extradebug = bitbake(test_recipe + " -e").output
+            extradebug = runCmd('cat bitbake-cookerdaemon.log').output
             extradebug += bitbake(test_recipe + " -S none").output
             extradebug += runCmd('ls -la tmp/stamps/*/ed/*').output
+            ret2 = bitbake(test_recipe)
+            found_warn2 = re.search(patt, ret2.output)
+            extradebug += "\nFound %s\n\n" % str(found_warn2)
+            extradebug += ret2.output
 
         self.assertIsNotNone(found_warn, "Didn't find the expected warning message. Output: %s, Extra debug: %s" % (ret.output, extradebug))

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list