mirror of
https://git.yoctoproject.org/poky
synced 2026-05-08 05:09:24 +00:00
oeqa/selftest/imagefeatures: don't use wic images in test_hypervisor_fmts
There's no need to build a wic image in this test as not all machines (such as qemuarm64 currently) have wic images out of the box. We can simply build ext4 images to work on more machines and save some time. (From OE-Core rev: cdcf858d00eaf54814e23f550f83f3646bf83a24) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
d72b13cef1
commit
12b4cbbfee
@@ -136,7 +136,7 @@ class ImageFeatures(OESelftestTestCase):
|
||||
img_types = [ 'vmdk', 'vdi', 'qcow2' ]
|
||||
features = ""
|
||||
for itype in img_types:
|
||||
features += 'IMAGE_FSTYPES += "wic.%s"\n' % itype
|
||||
features += 'IMAGE_FSTYPES += "ext4.%s"\n' % itype
|
||||
self.write_config(features)
|
||||
|
||||
image_name = 'core-image-minimal'
|
||||
@@ -145,7 +145,7 @@ class ImageFeatures(OESelftestTestCase):
|
||||
deploy_dir_image = get_bb_var('DEPLOY_DIR_IMAGE')
|
||||
link_name = get_bb_var('IMAGE_LINK_NAME', image_name)
|
||||
for itype in img_types:
|
||||
image_path = os.path.join(deploy_dir_image, "%s.wic.%s" %
|
||||
image_path = os.path.join(deploy_dir_image, "%s.ext4.%s" %
|
||||
(link_name, itype))
|
||||
|
||||
# check if result image file is in deploy directory
|
||||
|
||||
Reference in New Issue
Block a user