Normally, this test is run as part of the do_qa_configure() postfunc to the configure task. However, for the rare case that the configure task has been deleted (e.g., in packagegroups), then run it as a package QA test instead.
Signed-off-by: Peter Kjellerstedt <[email protected]> --- PATCHv2: New in v2. Replaces the previous solution that instead modified packagegroup.bbclass. meta/classes-global/insane.bbclass | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/meta/classes-global/insane.bbclass b/meta/classes-global/insane.bbclass index 8bbe5bb19a..77d708f367 100644 --- a/meta/classes-global/insane.bbclass +++ b/meta/classes-global/insane.bbclass @@ -1087,6 +1087,13 @@ def package_qa_check_missing_update_alternatives(pn, d): if d.getVar('ALTERNATIVE:%s' % pkg) and not bb.data.inherits_class('update-alternatives', d): oe.qa.handle_error("missing-update-alternatives", "%s: recipe defines ALTERNATIVE:%s but doesn't inherit update-alternatives. This might fail during do_rootfs later!" % (pn, pkg), d) +QARECIPETEST[invalid-packageconfig] = "package_qa_invalid_packageconfig" +def package_qa_invalid_packageconfig(pn, d): + # For almost all recipes, the check for invalid PACKAGECONFIGs will be run + # as part of the do_qa_configure() postfunc to the configure task instead. + if 'do_configure' not in bb.build.listtasks(d): + configure_qa_invalid_packageconfig(pn, d) + def parse_test_matrix(matrix_name, skip, d): testmatrix = d.getVarFlags(matrix_name) or {} g = globals()
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#233634): https://lists.openembedded.org/g/openembedded-core/message/233634 Mute This Topic: https://lists.openembedded.org/mt/118426821/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
