mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-05 05:04:44 +02:00

For unknown reasons we've never seemingly run the check layer script against OE-Core itself. This isn't entirely straightforward as the core layer is a bit of a special case, we can't for example compare signatures against ourselve and we can't remove core from bblayers.conf. Core does have distro, machine and software components too, in the case of distro, our fallback default settings. Whilst the qemu machines could be split into a seperate layer directory, core wouldn't then parse at all standalone due to the lack of any machine so it seems a bit pointless to do that. These changes tweak the script to handle core's special cases, specifically to allow distro and machine directories and to account for the README placed a directory level higher than other layers. (From OE-Core rev: ba312ed228507d05f280aeb96819d671b01400b8) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
29 lines
967 B
Python
29 lines
967 B
Python
# Copyright (C) 2017 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
import unittest
|
|
|
|
from checklayer import LayerType
|
|
from checklayer.case import OECheckLayerTestCase
|
|
|
|
class DistroCheckLayer(OECheckLayerTestCase):
|
|
@classmethod
|
|
def setUpClass(self):
|
|
if self.tc.layer['type'] not in (LayerType.DISTRO, LayerType.CORE):
|
|
raise unittest.SkipTest("DistroCheckLayer: Layer %s isn't Distro one." %\
|
|
self.tc.layer['name'])
|
|
|
|
def test_distro_defines_distros(self):
|
|
self.assertTrue(self.tc.layer['conf']['distros'],
|
|
"Layer is BSP but doesn't defines machines.")
|
|
|
|
def test_distro_no_set_distros(self):
|
|
from oeqa.utils.commands import get_bb_var
|
|
|
|
distro = get_bb_var('DISTRO')
|
|
self.assertEqual(self.td['bbvars']['DISTRO'], distro,
|
|
msg="Layer %s modified distro %s -> %s" % \
|
|
(self.tc.layer['name'], self.td['bbvars']['DISTRO'], distro))
|