From: Richard Purdie Date: Fri, 3 Mar 2017 10:57:49 +0000 (+0000) Subject: oeqa/sdkext/devtool: Ensure dependencies for test_extend_autotools_recipe_creation... X-Git-Tag: uninative-1.5~73 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=fb274c7fe588c556936a0df1ae583907875c2a76;p=openembedded-core.git oeqa/sdkext/devtool: Ensure dependencies for test_extend_autotools_recipe_creation are present test_extend_autotools_recipe_creation needs libxml2 so ensure this is installed/present as it may not be in the minimal eSDK case. Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oeqa/sdkext/cases/devtool.py b/meta/lib/oeqa/sdkext/cases/devtool.py index 1072fb6095..a01bc0bfe2 100644 --- a/meta/lib/oeqa/sdkext/cases/devtool.py +++ b/meta/lib/oeqa/sdkext/cases/devtool.py @@ -68,6 +68,7 @@ class DevtoolTest(OESDKExtTestCase): def test_extend_autotools_recipe_creation(self): req = 'https://github.com/rdfa/librdfa' recipe = "librdfa" + self._run('devtool sdk-install libxml2') self._run('devtool add %s %s' % (recipe, req) ) try: self._run('devtool build %s' % recipe)