[oe-commits] [openembedded-core] 31/33: oeqa/selftest/devtool: Ensure dbus is built befoe running test

git at git.openembedded.org git at git.openembedded.org
Thu Apr 25 14:02:40 UTC 2019


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

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

commit af7ba26a603a12de0aed35e786674c92049c2bee
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Fri Jul 13 22:16:28 2018 +0000

    oeqa/selftest/devtool: Ensure dbus is built befoe running test
    
    If dbus isn't build first the dbus dependency of dbus-wait can't be detected
    through pkgconfig and the test fails:
    
    AssertionError: {'DEPENDS': {'dbus'}} != {}
    - {'DEPENDS': {'dbus'}}
    + {} : Some expected variables not found in recipe: {'DEPENDS': {'dbus'}}
    
    Ensure dbus is built and present in the sysroot.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
    Signed-off-by: Armin Kuster <akuster808 at gmail.com>
---
 meta/lib/oeqa/selftest/cases/devtool.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta/lib/oeqa/selftest/cases/devtool.py b/meta/lib/oeqa/selftest/cases/devtool.py
index 0ce90a4..627bc65 100644
--- a/meta/lib/oeqa/selftest/cases/devtool.py
+++ b/meta/lib/oeqa/selftest/cases/devtool.py
@@ -300,6 +300,8 @@ class DevtoolTests(DevtoolBase):
 
     @OETestID(1423)
     def test_devtool_add_git_local(self):
+        # We need dbus built so that DEPENDS recognition works
+        bitbake('dbus')
         # Fetch source from a remote URL, but do it outside of devtool
         tempdir = tempfile.mkdtemp(prefix='devtoolqa')
         self.track_for_cleanup(tempdir)

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


More information about the Openembedded-commits mailing list