summaryrefslogtreecommitdiffstats
path: root/scripts/lib/checklayer/cases/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/lib/checklayer/cases/common.py')
-rw-r--r--scripts/lib/checklayer/cases/common.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/lib/checklayer/cases/common.py b/scripts/lib/checklayer/cases/common.py
index a13c1088f0..1bef61b048 100644
--- a/scripts/lib/checklayer/cases/common.py
+++ b/scripts/lib/checklayer/cases/common.py
@@ -51,3 +51,8 @@ class CommonCheckLayer(OECheckLayerTestCase):
51 msg = compare_signatures(self.td['sigs'], curr_sigs) 51 msg = compare_signatures(self.td['sigs'], curr_sigs)
52 if msg is not None: 52 if msg is not None:
53 self.fail('Adding layer %s changed signatures.\n%s' % (self.tc.layer['name'], msg)) 53 self.fail('Adding layer %s changed signatures.\n%s' % (self.tc.layer['name'], msg))
54
55 def test_layerseries_compat(self):
56 for collection_name, collection_data in self.tc.layer['collections'].items():
57 self.assertTrue(collection_data['compat'], "Collection %s from layer %s does not set compatible oe-core versions via LAYERSERIES_COMPAT_collection." \
58 % (collection_name, self.tc.layer['name']))