mirror of
https://git.yoctoproject.org/poky
synced 2026-05-09 17:39:31 +00:00
selftest: wic: stop using hddimg in FSTYPES
Removed hddimg from FSTYPES in wic test suite as wic doesn't depend on hddimg anymore. [YOCTO #10835] (From OE-Core rev: a332d9618c2d0f46b6c0c8fdeee8bec4cc73f2cf) Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
47be19240f
commit
3bc5724ec7
@@ -151,7 +151,7 @@ class Wic(oeSelfTest):
|
||||
@testcase(1346)
|
||||
def test_iso_image(self):
|
||||
"""Test creation of hybrid iso image with legacy and EFI boot"""
|
||||
config = 'IMAGE_FSTYPES += " hddimg "\nMACHINE_FEATURES_append = " efi"\n'
|
||||
config = 'MACHINE_FEATURES_append = " efi"\n'
|
||||
self.append_config(config)
|
||||
bitbake('core-image-minimal')
|
||||
self.remove_config(config)
|
||||
@@ -184,7 +184,7 @@ class Wic(oeSelfTest):
|
||||
@testcase(1560)
|
||||
def test_systemd_bootdisk(self):
|
||||
"""Test creation of systemd-bootdisk image"""
|
||||
config = 'IMAGE_FSTYPES += " hddimg "\nMACHINE_FEATURES_append = " efi"\n'
|
||||
config = 'MACHINE_FEATURES_append = " efi"\n'
|
||||
self.append_config(config)
|
||||
bitbake('core-image-minimal')
|
||||
self.remove_config(config)
|
||||
@@ -406,7 +406,7 @@ class Wic(oeSelfTest):
|
||||
@testcase(1351)
|
||||
def test_wic_image_type(self):
|
||||
"""Test building wic images by bitbake"""
|
||||
config = 'IMAGE_FSTYPES += " hddimg wic"\nWKS_FILE = "wic-image-minimal"\n'\
|
||||
config = 'IMAGE_FSTYPES += "wic"\nWKS_FILE = "wic-image-minimal"\n'\
|
||||
'MACHINE_FEATURES_append = " efi"\n'
|
||||
self.append_config(config)
|
||||
self.assertEqual(0, bitbake('wic-image-minimal').status)
|
||||
@@ -425,7 +425,7 @@ class Wic(oeSelfTest):
|
||||
@testcase(1422)
|
||||
def test_qemu(self):
|
||||
"""Test wic-image-minimal under qemu"""
|
||||
config = 'IMAGE_FSTYPES += " hddimg wic"\nWKS_FILE = "wic-image-minimal"\n'\
|
||||
config = 'IMAGE_FSTYPES += "wic"\nWKS_FILE = "wic-image-minimal"\n'\
|
||||
'MACHINE_FEATURES_append = " efi"\n'
|
||||
self.append_config(config)
|
||||
self.assertEqual(0, bitbake('wic-image-minimal').status)
|
||||
|
||||
Reference in New Issue
Block a user