mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-04 16:10:04 +00:00
selftest/runtime_test/incompatible_lic: Use IMAGE_CLASSES for testimage
testimage should be included via IMAGE_CLASSES, not globally with INHERIT. (From OE-Core rev: 4cdb29c7342b16a6c9294268a674a1414eed88e5) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
0b7567d577
commit
a74792b15d
|
|
@ -134,7 +134,7 @@ INCOMPATIBLE_LICENSE:pn-core-image-minimal = "GPL-3.0* LGPL-3.0*"
|
|||
|
||||
def test_core_image_full_cmdline_weston(self):
|
||||
self.write_config("""
|
||||
INHERIT += "testimage"
|
||||
IMAGE_CLASSES += "testimage"
|
||||
INCOMPATIBLE_LICENSE:pn-core-image-full-cmdline = "GPL-3.0* LGPL-3.0*"
|
||||
INCOMPATIBLE_LICENSE:pn-core-image-weston = "GPL-3.0* LGPL-3.0*"
|
||||
# Settings for full-cmdline
|
||||
|
|
|
|||
|
|
@ -119,7 +119,7 @@ class TestImage(OESelftestTestCase):
|
|||
if get_bb_var('DISTRO') == 'poky-tiny':
|
||||
self.skipTest('core-image-full-cmdline not buildable for poky-tiny')
|
||||
|
||||
features = 'INHERIT += "testimage"\n'
|
||||
features = 'IMAGE_CLASSES += "testimage"\n'
|
||||
features += 'IMAGE_INSTALL:append = " libssl"\n'
|
||||
features += 'TEST_SUITES = "ping ssh selftest"\n'
|
||||
self.write_config(features)
|
||||
|
|
@ -137,7 +137,7 @@ class TestImage(OESelftestTestCase):
|
|||
if get_bb_var('DISTRO') == 'poky-tiny':
|
||||
self.skipTest('core-image-full-cmdline not buildable for poky-tiny')
|
||||
|
||||
features = 'INHERIT += "testimage"\n'
|
||||
features = 'IMAGE_CLASSES += "testimage"\n'
|
||||
features += 'TEST_SUITES = "ping ssh dnf_runtime dnf.DnfBasicTest.test_dnf_help"\n'
|
||||
# We don't yet know what the server ip and port will be - they will be patched
|
||||
# in at the start of the on-image test
|
||||
|
|
@ -172,7 +172,7 @@ class TestImage(OESelftestTestCase):
|
|||
if get_bb_var('DISTRO') == 'poky-tiny':
|
||||
self.skipTest('core-image-full-cmdline not buildable for poky-tiny')
|
||||
|
||||
features = 'INHERIT += "testimage"\n'
|
||||
features = 'IMAGE_CLASSES += "testimage"\n'
|
||||
features += 'TEST_SUITES = "ping ssh apt.AptRepoTest.test_apt_install_from_repo"\n'
|
||||
# We don't yet know what the server ip and port will be - they will be patched
|
||||
# in at the start of the on-image test
|
||||
|
|
@ -222,7 +222,7 @@ class TestImage(OESelftestTestCase):
|
|||
|
||||
qemu_packageconfig = get_bb_var('PACKAGECONFIG', 'qemu-system-native')
|
||||
qemu_distrofeatures = get_bb_var('DISTRO_FEATURES', 'qemu-system-native')
|
||||
features = 'INHERIT += "testimage"\n'
|
||||
features = 'IMAGE_CLASSES += "testimage"\n'
|
||||
if 'gtk+' not in qemu_packageconfig:
|
||||
features += 'PACKAGECONFIG:append:pn-qemu-system-native = " gtk+"\n'
|
||||
if 'sdl' not in qemu_packageconfig:
|
||||
|
|
@ -267,7 +267,7 @@ class TestImage(OESelftestTestCase):
|
|||
except subprocess.CalledProcessError as e:
|
||||
self.fail("Could not determine the path to dri drivers on the host via pkg-config.\nPlease install Mesa development files (particularly, dri.pc) on the host machine.")
|
||||
qemu_distrofeatures = get_bb_var('DISTRO_FEATURES', 'qemu-system-native')
|
||||
features = 'INHERIT += "testimage"\n'
|
||||
features = 'IMAGE_CLASSES += "testimage"\n'
|
||||
if 'opengl' not in qemu_distrofeatures:
|
||||
features += 'DISTRO_FEATURES:append = " opengl"\n'
|
||||
features += 'TEST_SUITES = "ping ssh virgl"\n'
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user