]> code.ossystems Code Review - openembedded-core.git/commitdiff
oeqa/sdkext/devtool: Ensure dependencies for test_extend_autotools_recipe_creation...
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 3 Mar 2017 10:57:49 +0000 (10:57 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 3 Mar 2017 11:15:16 +0000 (11:15 +0000)
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>
meta/lib/oeqa/sdkext/cases/devtool.py

index 1072fb6095a49b5e2385a0c36480ab8dc2b7e05d..a01bc0bfe22eb753cedb9d5935e4b47cd97bae35 100644 (file)
@@ -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)