diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-03 10:57:49 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-03 11:16:12 +0000 |
commit | d3cdea0cc93a1dc2c9b5c6b110a99058bf69f101 (patch) | |
tree | 24ac7032a35dd649d3b2626cb63008c6c8b0fabd /meta | |
parent | 8f1ed1758748e4c00eaa6b4b3528e79f36d62c19 (diff) | |
download | poky-d3cdea0cc93a1dc2c9b5c6b110a99058bf69f101.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.
(From OE-Core rev: fb274c7fe588c556936a0df1ae583907875c2a76)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oeqa/sdkext/cases/devtool.py | 1 |
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): | |||
68 | def test_extend_autotools_recipe_creation(self): | 68 | def test_extend_autotools_recipe_creation(self): |
69 | req = 'https://github.com/rdfa/librdfa' | 69 | req = 'https://github.com/rdfa/librdfa' |
70 | recipe = "librdfa" | 70 | recipe = "librdfa" |
71 | self._run('devtool sdk-install libxml2') | ||
71 | self._run('devtool add %s %s' % (recipe, req) ) | 72 | self._run('devtool add %s %s' % (recipe, req) ) |
72 | try: | 73 | try: |
73 | self._run('devtool build %s' % recipe) | 74 | self._run('devtool build %s' % recipe) |