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: lucaceresoli/bug-15201-perf-libtraceevent-missing~22270 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fb274c7fe588c556936a0df1ae583907875c2a76;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.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 1072fb6095a..a01bc0bfe22 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)