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..2173590030 100644 --- a/meta/lib/oeqa/selftest/cases/devtool.py +++ b/meta/lib/oeqa/selftest/cases/devtool.py @@ -2526,13 +2526,11 @@ class DevtoolIdeSdkTests(DevtoolBase): def _write_bb_config(self, recipe_names): """Helper to write the bitbake local.conf file""" 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)) + fragments = ['core/yocto/devtool-ide-sdk'] + self.write_config("\n".join(conf_lines), fragments=fragments) def _check_workspace(self): """Check if a workspace directory is available and setup the cleanup""" -- 2.52.0
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#228587): https://lists.openembedded.org/g/openembedded-core/message/228587 Mute This Topic: https://lists.openembedded.org/mt/116974206/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
