diff options
Diffstat (limited to 'meta/lib/oeqa/selftest')
-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) |