summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/lib/oeqa/selftest/cases/recipetool.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/recipetool.py b/meta/lib/oeqa/selftest/cases/recipetool.py
index 754ea94982..cd15df11a9 100644
--- a/meta/lib/oeqa/selftest/cases/recipetool.py
+++ b/meta/lib/oeqa/selftest/cases/recipetool.py
@@ -427,6 +427,8 @@ class RecipetoolTests(RecipetoolBase):
427 427
428 @OETestID(1418) 428 @OETestID(1418)
429 def test_recipetool_create_cmake(self): 429 def test_recipetool_create_cmake(self):
430 bitbake('-c packagedata gtk+')
431
430 # Try adding a recipe 432 # Try adding a recipe
431 temprecipe = os.path.join(self.tempdir, 'recipe') 433 temprecipe = os.path.join(self.tempdir, 'recipe')
432 os.makedirs(temprecipe) 434 os.makedirs(temprecipe)
@@ -439,7 +441,7 @@ class RecipetoolTests(RecipetoolBase):
439 checkvars['SRC_URI'] = 'http://downloads.sourceforge.net/project/navit/v${PV}/navit-${PV}.tar.gz' 441 checkvars['SRC_URI'] = 'http://downloads.sourceforge.net/project/navit/v${PV}/navit-${PV}.tar.gz'
440 checkvars['SRC_URI[md5sum]'] = '242f398e979a6b8c0f3c802b63435b68' 442 checkvars['SRC_URI[md5sum]'] = '242f398e979a6b8c0f3c802b63435b68'
441 checkvars['SRC_URI[sha256sum]'] = '13353481d7fc01a4f64e385dda460b51496366bba0fd2cc85a89a0747910e94d' 443 checkvars['SRC_URI[sha256sum]'] = '13353481d7fc01a4f64e385dda460b51496366bba0fd2cc85a89a0747910e94d'
442 checkvars['DEPENDS'] = set(['freetype', 'zlib', 'openssl', 'glib-2.0', 'virtual/libgl', 'virtual/egl', 'gtk+', 'libpng', 'libsdl', 'freeglut', 'dbus-glib']) 444 checkvars['DEPENDS'] = set(['freetype', 'zlib', 'openssl', 'glib-2.0', 'virtual/libgl', 'virtual/egl', 'gtk+', 'libpng', 'libsdl', 'freeglut', 'dbus-glib', 'fribidi'])
443 inherits = ['cmake', 'python-dir', 'gettext', 'pkgconfig'] 445 inherits = ['cmake', 'python-dir', 'gettext', 'pkgconfig']
444 self._test_recipe_contents(recipefile, checkvars, inherits) 446 self._test_recipe_contents(recipefile, checkvars, inherits)
445 447