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:15:16 +0000 |
commit | fb274c7fe588c556936a0df1ae583907875c2a76 (patch) | |
tree | 109ba142818cce867969ae8b9a3c317a02664564 | |
parent | 7313b10e242da9225211ca9fd53d14a121c5fa42 (diff) | |
download | openembedded-core-fb274c7fe588c556936a0df1ae583907875c2a76.tar.gz openembedded-core-fb274c7fe588c556936a0df1ae583907875c2a76.tar.bz2 openembedded-core-fb274c7fe588c556936a0df1ae583907875c2a76.zip |
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>
-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): 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) |