From 1fba7ed6158210399abbf502d5dd945d1a456952 Mon Sep 17 00:00:00 2001 From: Tim Orling Date: Wed, 21 Feb 2024 20:26:29 -0800 Subject: [PATCH] meta-oe-image-ptest: add PTESTS_PROBLEMS_META_OE In oe-core, PTESTS_PROBLEMS are also enabled, so even though the recipe might have failures or the ptests do not run cleanly, the BBCLASSEXTEND still works. Enable the same behavior for meta-oe. Signed-off-by: Tim Orling Signed-off-by: Khem Raj --- meta-oe/recipes-core/images/meta-oe-image-ptest-all.bb | 2 +- meta-oe/recipes-core/images/meta-oe-image-ptest.bb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-oe/recipes-core/images/meta-oe-image-ptest-all.bb b/meta-oe/recipes-core/images/meta-oe-image-ptest-all.bb index e8e1750b0e..da942e8bee 100644 --- a/meta-oe/recipes-core/images/meta-oe-image-ptest-all.bb +++ b/meta-oe/recipes-core/images/meta-oe-image-ptest-all.bb @@ -9,7 +9,7 @@ REQUIRED_DISTRO_FEATURES = "ptest" require conf/include/ptest-packagelists-meta-oe.inc # Include the full set of ptests -PTESTS_META_OE = "${PTESTS_FAST_META_OE} ${PTESTS_SLOW_META_OE}" +PTESTS_META_OE = "${PTESTS_FAST_META_OE} ${PTESTS_SLOW_META_OE} ${PTESTS_PROBLEMS_META_OE}" do_testimage[noexec] = "1" do_testimage[depends] = "${@' '.join(['meta-oe-image-ptest-'+x+':do_testimage' for x in d.getVar('PTESTS_META_OE').split()])}" diff --git a/meta-oe/recipes-core/images/meta-oe-image-ptest.bb b/meta-oe/recipes-core/images/meta-oe-image-ptest.bb index 4cd1f4497c..b32df0e221 100644 --- a/meta-oe/recipes-core/images/meta-oe-image-ptest.bb +++ b/meta-oe/recipes-core/images/meta-oe-image-ptest.bb @@ -9,7 +9,7 @@ SUMMARY = "meta-oe ptest test image" DESCRIPTION += "Also including the ${MCNAME} ptest package." HOMEPAGE = "https://www.openembedded.org/" -PTESTS_META_OE = "${PTESTS_SLOW_META_OE} ${PTESTS_FAST_META_OE}" +PTESTS_META_OE = "${PTESTS_SLOW_META_OE} ${PTESTS_FAST_META_OE} ${PTESTS_PROBLEMS_META_OE}" IMAGE_INSTALL:append = " ${MCNAME}-ptest openssh"