From fb274c7fe588c556936a0df1ae583907875c2a76 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 3 Mar 2017 10:57:49 +0000 Subject: 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 --- meta/lib/oeqa/sdkext/cases/devtool.py | 1 + 1 file changed, 1 insertion(+) (limited to 'meta/lib') 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) -- cgit 1.2.3-korg