From: Adrian Freihofer <[email protected]> Test also the new ide-sdk fragment when setting up the ide-sdk test environment.
Signed-off-by: Adrian Freihofer <[email protected]> --- meta/lib/oeqa/selftest/cases/devtool.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/meta/lib/oeqa/selftest/cases/devtool.py b/meta/lib/oeqa/selftest/cases/devtool.py index 8d7e984753..90ce543a6f 100644 --- a/meta/lib/oeqa/selftest/cases/devtool.py +++ b/meta/lib/oeqa/selftest/cases/devtool.py @@ -2524,12 +2524,10 @@ class DevtoolUpgradeTests(DevtoolBase): class DevtoolIdeSdkTests(DevtoolBase): def _write_bb_config(self, recipe_names): - """Helper to write the bitbake local.conf file""" + """Helper to write the bitbake configuration""" + self.configure_fragments(['core/yocto/devtool-ide-sdk']) conf_lines = [ - 'IMAGE_CLASSES += "image-combined-dbg"', - 'IMAGE_GEN_DEBUGFS = "1"', - 'IMAGE_INSTALL:append = " gdbserver %s"' % ' '.join( - [r + '-ptest' for r in recipe_names]), + 'IMAGE_INSTALL:append = " %s"' % ' '.join([r + '-ptest' for r in recipe_names]), 'DISTRO_FEATURES:append = " ptest"' ] self.write_config("\n".join(conf_lines)) -- 2.52.0
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#228656): https://lists.openembedded.org/g/openembedded-core/message/228656 Mute This Topic: https://lists.openembedded.org/mt/116996286/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
