copy_needed_files() built the manifest and testdata paths from IMAGE_LINK_NAME alone, so an empty value made it copy ".manifest" and fail. testexport_main() in the same file already falls back to IMAGE_NAME.
AI-Generated: Uses Claude Opus 5 Signed-off-by: Thomas Roos <[email protected]> --- meta/classes-recipe/testexport.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes-recipe/testexport.bbclass b/meta/classes-recipe/testexport.bbclass index 12b7e17..a0be7cd 100644 --- a/meta/classes-recipe/testexport.bbclass +++ b/meta/classes-recipe/testexport.bbclass @@ -134,7 +134,7 @@ def copy_needed_files(d, tc): # Copy test data image_name = ("%s/%s" % (d.getVar('DEPLOY_DIR_IMAGE'), - d.getVar('IMAGE_LINK_NAME'))) + d.getVar('IMAGE_LINK_NAME') or d.getVar('IMAGE_NAME'))) image_manifest = "%s.manifest" % image_name tdname = "%s.testdata.json" % image_name test_data_path = os.path.join(export_path, 'data') -- 2.55.0
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#243709): https://lists.openembedded.org/g/openembedded-core/message/243709 Mute This Topic: https://lists.openembedded.org/mt/120826003/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
