diff options
-rw-r--r-- | meta-selftest/recipes-test/images/wic-image-minimal.bb | 2 | ||||
-rw-r--r-- | meta/lib/oeqa/selftest/wic.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/meta-selftest/recipes-test/images/wic-image-minimal.bb b/meta-selftest/recipes-test/images/wic-image-minimal.bb index 95c7a9b89a..ced22c822a 100644 --- a/meta-selftest/recipes-test/images/wic-image-minimal.bb +++ b/meta-selftest/recipes-test/images/wic-image-minimal.bb | |||
@@ -4,7 +4,7 @@ SRC_URI = "file://${FILE_DIRNAME}/${BPN}.wks" | |||
4 | 4 | ||
5 | IMAGE_INSTALL = "packagegroup-core-boot ${ROOTFS_PKGMANAGE_BOOTSTRAP}" | 5 | IMAGE_INSTALL = "packagegroup-core-boot ${ROOTFS_PKGMANAGE_BOOTSTRAP}" |
6 | 6 | ||
7 | IMAGE_FSTYPES = "wic.bz2" | 7 | IMAGE_FSTYPES = "wic" |
8 | RM_OLD_IMAGE = "1" | 8 | RM_OLD_IMAGE = "1" |
9 | 9 | ||
10 | DEPENDS = "syslinux syslinux-native parted-native dosfstools-native mtools-native" | 10 | DEPENDS = "syslinux syslinux-native parted-native dosfstools-native mtools-native" |
diff --git a/meta/lib/oeqa/selftest/wic.py b/meta/lib/oeqa/selftest/wic.py index df826ed84b..a739f69b2e 100644 --- a/meta/lib/oeqa/selftest/wic.py +++ b/meta/lib/oeqa/selftest/wic.py | |||
@@ -228,7 +228,7 @@ class Wic(oeSelfTest): | |||
228 | prefix = os.path.join(deploy_dir, 'wic-image-minimal-%s.' % machine) | 228 | prefix = os.path.join(deploy_dir, 'wic-image-minimal-%s.' % machine) |
229 | # check if we have result image and manifests symlinks | 229 | # check if we have result image and manifests symlinks |
230 | # pointing to existing files | 230 | # pointing to existing files |
231 | for suffix in ('wic.bz2', 'manifest'): | 231 | for suffix in ('wic', 'manifest'): |
232 | path = prefix + suffix | 232 | path = prefix + suffix |
233 | self.assertTrue(os.path.islink(path)) | 233 | self.assertTrue(os.path.islink(path)) |
234 | self.assertTrue(os.path.isfile(os.path.realpath(path))) | 234 | self.assertTrue(os.path.isfile(os.path.realpath(path))) |