diff options
Diffstat (limited to 'meta/lib/oeqa/selftest/wic.py')
-rw-r--r-- | meta/lib/oeqa/selftest/wic.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/meta/lib/oeqa/selftest/wic.py b/meta/lib/oeqa/selftest/wic.py index 4aacd86085..2e22362e42 100644 --- a/meta/lib/oeqa/selftest/wic.py +++ b/meta/lib/oeqa/selftest/wic.py | |||
@@ -681,3 +681,19 @@ part /etc --source rootfs --ondisk mmcblk0 --fstype=ext4 --exclude-path bin/ --r | |||
681 | os.remove(wkspath) | 681 | os.remove(wkspath) |
682 | wicout = glob(self.resultdir + "%s-*direct" % wksname) | 682 | wicout = glob(self.resultdir + "%s-*direct" % wksname) |
683 | self.assertEqual(0, len(wicout)) | 683 | self.assertEqual(0, len(wicout)) |
684 | |||
685 | @only_for_arch(['i586', 'i686', 'x86_64']) | ||
686 | def test_rawcopy_plugin_qemu(self): | ||
687 | """Test rawcopy plugin in qemu""" | ||
688 | # build ext4 and wic images | ||
689 | for fstype in ("ext4", "wic"): | ||
690 | config = 'IMAGE_FSTYPES = "%s"\nWKS_FILE = "test_rawcopy_plugin.wks.in"\n' % fstype | ||
691 | self.append_config(config) | ||
692 | self.assertEqual(0, bitbake('core-image-minimal').status) | ||
693 | self.remove_config(config) | ||
694 | |||
695 | with runqemu('core-image-minimal', ssh=False, image_fstype='wic') as qemu: | ||
696 | cmd = "grep vda. /proc/partitions |wc -l" | ||
697 | status, output = qemu.run_serial(cmd) | ||
698 | self.assertEqual(1, status, 'Failed to run command "%s": %s' % (cmd, output)) | ||
699 | self.assertEqual(output, '2') | ||