aboutsummaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2017-03-03 10:57:49 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-03-03 11:15:16 +0000
commitfb274c7fe588c556936a0df1ae583907875c2a76 (patch)
tree109ba142818cce867969ae8b9a3c317a02664564 /meta/lib
parent7313b10e242da9225211ca9fd53d14a121c5fa42 (diff)
downloadopenembedded-core-contrib-fb274c7fe588c556936a0df1ae583907875c2a76.tar.gz
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 <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oeqa/sdkext/cases/devtool.py1
1 files changed, 1 insertions, 0 deletions
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)