diff options
-rw-r--r-- | meta/lib/oeqa/selftest/wic.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/meta/lib/oeqa/selftest/wic.py b/meta/lib/oeqa/selftest/wic.py index f0d9dd90e5..2401aaa156 100644 --- a/meta/lib/oeqa/selftest/wic.py +++ b/meta/lib/oeqa/selftest/wic.py | |||
@@ -748,3 +748,13 @@ part /etc --source rootfs --ondisk mmcblk0 --fstype=ext4 --exclude-path bin/ --r | |||
748 | wksname = os.path.splitext(os.path.basename(wks.name))[0] | 748 | wksname = os.path.splitext(os.path.basename(wks.name))[0] |
749 | out = glob(self.resultdir + "%s-*direct" % wksname) | 749 | out = glob(self.resultdir + "%s-*direct" % wksname) |
750 | self.assertEqual(1, len(out)) | 750 | self.assertEqual(1, len(out)) |
751 | |||
752 | def test_image_bootpart_globbed(self): | ||
753 | """Test globbed sources with image-bootpart plugin""" | ||
754 | img = "core-image-minimal" | ||
755 | cmd = "wic create sdimage-bootpart -e %s -o %s" % (img, self.resultdir) | ||
756 | config = 'IMAGE_BOOT_FILES = "%s*"' % get_bb_var('KERNEL_IMAGETYPE', img) | ||
757 | self.append_config(config) | ||
758 | self.assertEqual(0, runCmd(cmd).status) | ||
759 | self.remove_config(config) | ||
760 | self.assertEqual(1, len(glob(self.resultdir + "sdimage-bootpart-*direct"))) | ||