From: Adrian Freihofer Date: Sat, 12 Jul 2025 13:06:37 +0000 (+0200) Subject: oe-selftest: devtool: run without poky X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7b5b0908a6acf43384a13f2e6801e014a61b8e8f;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git oe-selftest: devtool: run without poky If DISTRO is set to poky, the ptest DISTRO_FEATURE is enable. However, without meta-poky layer, ptest packages are not compiled and the tests fail with: ERROR: Nothing RPROVIDES 'cmake-example-ptest'... Signed-off-by: Adrian Freihofer Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oeqa/selftest/cases/devtool.py b/meta/lib/oeqa/selftest/cases/devtool.py index 4f02f4b68b..45263e1a3d 100644 --- a/meta/lib/oeqa/selftest/cases/devtool.py +++ b/meta/lib/oeqa/selftest/cases/devtool.py @@ -2530,7 +2530,8 @@ class DevtoolIdeSdkTests(DevtoolBase): 'IMAGE_CLASSES += "image-combined-dbg"', 'IMAGE_GEN_DEBUGFS = "1"', 'IMAGE_INSTALL:append = " gdbserver %s"' % ' '.join( - [r + '-ptest' for r in recipe_names]) + [r + '-ptest' for r in recipe_names]), + 'DISTRO_FEATURES:append = " ptest"' ] self.write_config("\n".join(conf_lines))