mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
testexport: fallback for empty IMAGE_LINK_NAME
if IMAGE_LINK_NAME is set empty to disable the symlinking for image artifacts in deploy, testexport fails, as the path assembly is incorrect. In that case fallback to IMAGE_NAME (From OE-Core rev: 0c1d098e6dd08fa3a5aafca656457ac6badcef89) (From OE-Core rev: a821a5810ae6edba5882a43e3c60c142f2acda9d) Signed-off-by: Konrad Weihmann <kweihmann@outlook.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Steve Sakoman <steve@sakoman.com>
This commit is contained in:
committed by
Steve Sakoman
parent
38ea1cb055
commit
504f203986
@@ -50,7 +50,7 @@ def testexport_main(d):
|
||||
from oeqa.runtime.context import OERuntimeTestContextExecutor
|
||||
|
||||
image_name = ("%s/%s" % (d.getVar('DEPLOY_DIR_IMAGE'),
|
||||
d.getVar('IMAGE_LINK_NAME')))
|
||||
d.getVar('IMAGE_LINK_NAME') or d.getVar('IMAGE_NAME')))
|
||||
|
||||
tdname = "%s.testdata.json" % image_name
|
||||
td = json.load(open(tdname, "r"))
|
||||
|
||||
Reference in New Issue
Block a user