diff options
| -rw-r--r-- | meta-selftest/wic/test_rawcopy_plugin.wks.in | 6 | ||||
| -rw-r--r-- | meta/lib/oeqa/selftest/wic.py | 16 |
2 files changed, 22 insertions, 0 deletions
diff --git a/meta-selftest/wic/test_rawcopy_plugin.wks.in b/meta-selftest/wic/test_rawcopy_plugin.wks.in new file mode 100644 index 0000000000..83be4be914 --- /dev/null +++ b/meta-selftest/wic/test_rawcopy_plugin.wks.in | |||
| @@ -0,0 +1,6 @@ | |||
| 1 | # short-description: This file is used in oe-selftest wic module to test rawcopy plugin | ||
| 2 | |||
| 3 | part /boot --active --source bootimg-pcbios | ||
| 4 | part / --source rawcopy --sourceparams="file=core-image-minimal-${MACHINE}.ext4" --use-uuid | ||
| 5 | |||
| 6 | bootloader --timeout=0 --append="console=ttyS0,115200n8" | ||
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') | ||
