diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2017-02-01 18:00:05 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-02 17:37:43 +0000 |
commit | 3bc5724ec7fa685e4f8e6cf6254f2288cad080bf (patch) | |
tree | 501b41149a47ad95b09f5424e746505844809c4a /meta/lib | |
parent | 47be19240f90297516156741d6e5f5ddfe0b9da5 (diff) | |
download | poky-3bc5724ec7fa685e4f8e6cf6254f2288cad080bf.tar.gz |
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>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oeqa/selftest/wic.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/lib/oeqa/selftest/wic.py b/meta/lib/oeqa/selftest/wic.py index 6a6b54c973..ebf3d18843 100644 --- a/meta/lib/oeqa/selftest/wic.py +++ b/meta/lib/oeqa/selftest/wic.py | |||
@@ -151,7 +151,7 @@ class Wic(oeSelfTest): | |||
151 | @testcase(1346) | 151 | @testcase(1346) |
152 | def test_iso_image(self): | 152 | def test_iso_image(self): |
153 | """Test creation of hybrid iso image with legacy and EFI boot""" | 153 | """Test creation of hybrid iso image with legacy and EFI boot""" |
154 | config = 'IMAGE_FSTYPES += " hddimg "\nMACHINE_FEATURES_append = " efi"\n' | 154 | config = 'MACHINE_FEATURES_append = " efi"\n' |
155 | self.append_config(config) | 155 | self.append_config(config) |
156 | bitbake('core-image-minimal') | 156 | bitbake('core-image-minimal') |
157 | self.remove_config(config) | 157 | self.remove_config(config) |
@@ -184,7 +184,7 @@ class Wic(oeSelfTest): | |||
184 | @testcase(1560) | 184 | @testcase(1560) |
185 | def test_systemd_bootdisk(self): | 185 | def test_systemd_bootdisk(self): |
186 | """Test creation of systemd-bootdisk image""" | 186 | """Test creation of systemd-bootdisk image""" |
187 | config = 'IMAGE_FSTYPES += " hddimg "\nMACHINE_FEATURES_append = " efi"\n' | 187 | config = 'MACHINE_FEATURES_append = " efi"\n' |
188 | self.append_config(config) | 188 | self.append_config(config) |
189 | bitbake('core-image-minimal') | 189 | bitbake('core-image-minimal') |
190 | self.remove_config(config) | 190 | self.remove_config(config) |
@@ -406,7 +406,7 @@ class Wic(oeSelfTest): | |||
406 | @testcase(1351) | 406 | @testcase(1351) |
407 | def test_wic_image_type(self): | 407 | def test_wic_image_type(self): |
408 | """Test building wic images by bitbake""" | 408 | """Test building wic images by bitbake""" |
409 | config = 'IMAGE_FSTYPES += " hddimg wic"\nWKS_FILE = "wic-image-minimal"\n'\ | 409 | config = 'IMAGE_FSTYPES += "wic"\nWKS_FILE = "wic-image-minimal"\n'\ |
410 | 'MACHINE_FEATURES_append = " efi"\n' | 410 | 'MACHINE_FEATURES_append = " efi"\n' |
411 | self.append_config(config) | 411 | self.append_config(config) |
412 | self.assertEqual(0, bitbake('wic-image-minimal').status) | 412 | self.assertEqual(0, bitbake('wic-image-minimal').status) |
@@ -425,7 +425,7 @@ class Wic(oeSelfTest): | |||
425 | @testcase(1422) | 425 | @testcase(1422) |
426 | def test_qemu(self): | 426 | def test_qemu(self): |
427 | """Test wic-image-minimal under qemu""" | 427 | """Test wic-image-minimal under qemu""" |
428 | config = 'IMAGE_FSTYPES += " hddimg wic"\nWKS_FILE = "wic-image-minimal"\n'\ | 428 | config = 'IMAGE_FSTYPES += "wic"\nWKS_FILE = "wic-image-minimal"\n'\ |
429 | 'MACHINE_FEATURES_append = " efi"\n' | 429 | 'MACHINE_FEATURES_append = " efi"\n' |
430 | self.append_config(config) | 430 | self.append_config(config) |
431 | self.assertEqual(0, bitbake('wic-image-minimal').status) | 431 | self.assertEqual(0, bitbake('wic-image-minimal').status) |