Lines Matching full:layer
15 if self.tc.layer['type'] == LayerType.CORE:
16 raise unittest.SkipTest("Core layer's README is top level")
19 readme_files = glob.glob(os.path.join(self.tc.layer['path'], '[Rr][Ee][Aa][Dd][Mm][Ee]*'))
21 msg="Layer doesn't contain a README file.")
31 msg="Layer contains a README file but it is empty.")
33 # If a layer's README references another README, then the checks below are not valid
44 check_command('Layer %s failed to parse.' % self.tc.layer['name'],
48 check_command('Layer %s failed to show environment.' % self.tc.layer['name'],
62 This also does "bitbake -S none world" along with inheriting "yocto-check-layer"
67 …'BB_ENV_PASSTHROUGH_ADDITIONS="$BB_ENV_PASSTHROUGH_ADDITIONS INHERIT" INHERIT="yocto-check-layer"')
71 …msg.insert(0, 'Layer %s failed additional checks from yocto-check-layer.bbclass\nSee below log for…
72 self.tc.layer['name'])
76 if self.tc.layer['type'] == LayerType.SOFTWARE and \
78 raise unittest.SkipTest("Not testing for signature changes in a software layer %s." \
79 % self.tc.layer['name'])
84 self.fail('Adding layer %s changed signatures.\n%s' % (self.tc.layer['name'], msg))
87 for collection_name, collection_data in self.tc.layer['collections'].items():
88 …self.assertTrue(collection_data['compat'], "Collection %s from layer %s does not set compatible oe…
89 % (collection_name, self.tc.layer['name']))