[oe-commits] [openembedded-core] 26/28: seltest/cases/devtool: Build dbus on test_devtool_add_git_local

git at git.openembedded.org git at git.openembedded.org
Thu Jul 20 09:44:46 UTC 2017


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 a62332cd33db878b85f9bcccd184f62217311ae8
Author: Aníbal Limón <anibal.limon at linux.intel.com>
AuthorDate: Mon Jul 10 09:37:28 2017 -0700

    seltest/cases/devtool: Build dbus on test_devtool_add_git_local
    
    The dbus-wait recipe has the dependency of dbus, due to now we have
    build folder per test class the dependency needs to be build before
    run devtool add because without it the DEPENDS field is unset.
    
    The devtool/recipetool uses previously build recipes to figure out
    the dependencies.
    
    Signed-off-by: Aníbal Limón <anibal.limon at linux.intel.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 f88a842..1e83064 100644
--- a/meta/lib/oeqa/selftest/cases/devtool.py
+++ b/meta/lib/oeqa/selftest/cases/devtool.py
@@ -248,6 +248,8 @@ class DevtoolTests(DevtoolCommon):
         # Test devtool add
         self.track_for_cleanup(self.workspacedir)
         self.add_command_to_tearDown('bitbake-layers remove-layer %s' % self.workspacedir)
+        # dbus needs to be built because is a dependency of dbus-wait
+        self.bitbake('dbus')
         # Don't specify a name since we should be able to auto-detect it
         result = self.runCmd('devtool add %s' % srcdir)
         self.assertExists(os.path.join(self.workspacedir, 'conf', 'layer.conf'), 'Workspace directory not created')

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


More information about the Openembedded-commits mailing list