summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/cases/bblayers.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/selftest/cases/bblayers.py')
-rw-r--r--meta/lib/oeqa/selftest/cases/bblayers.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/lib/oeqa/selftest/cases/bblayers.py b/meta/lib/oeqa/selftest/cases/bblayers.py
index 494fa892a3..549abe7d10 100644
--- a/meta/lib/oeqa/selftest/cases/bblayers.py
+++ b/meta/lib/oeqa/selftest/cases/bblayers.py
@@ -113,6 +113,11 @@ class BitbakeLayers(OESelftestTestCase):
113 113
114 self.assertEqual(bb_vars['BBFILE_PRIORITY_%s' % layername], str(priority), 'BBFILE_PRIORITY_%s != %d' % (layername, priority)) 114 self.assertEqual(bb_vars['BBFILE_PRIORITY_%s' % layername], str(priority), 'BBFILE_PRIORITY_%s != %d' % (layername, priority))
115 115
116 result = runCmd('bitbake-layers save-build-conf {} {}'.format(layerpath, "buildconf-1"))
117 for f in ('local.conf.sample', 'bblayers.conf.sample', 'conf-notes.txt'):
118 fullpath = os.path.join(layerpath, "conf", "templates", "buildconf-1", f)
119 self.assertTrue(os.path.exists(fullpath), "Template configuration file {} not found".format(fullpath))
120
116 def get_recipe_basename(self, recipe): 121 def get_recipe_basename(self, recipe):
117 recipe_file = "" 122 recipe_file = ""
118 result = runCmd("bitbake-layers show-recipes -f %s" % recipe) 123 result = runCmd("bitbake-layers show-recipes -f %s" % recipe)