From: Mike Qiu <[email protected]> Currently, multi_disk test just test ext3 and ext2 in guest. Add the ext4 format in config file, so that can use ext4 to test the guest os.
Signed-off-by: Mike Qiu <[email protected]> --- shared/cfg/guest-os/Linux.cfg | 4 ++-- virttest/unittest_data/testcfg.huge/guest-os.cfg | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/shared/cfg/guest-os/Linux.cfg b/shared/cfg/guest-os/Linux.cfg index 29ff6a7..612f784 100644 --- a/shared/cfg/guest-os/Linux.cfg +++ b/shared/cfg/guest-os/Linux.cfg @@ -45,7 +45,7 @@ show_mount_cmd = mount|gawk '/mnt/{print $1}' clean_cmd = "\rm -rf /mnt/*" cmd_list = "copy_to_command copy_from_command" - file_system = "ext3 ext2" + file_system = "ext4 ext3 ext2" mount_command = mkdir /mnt/%s && mount /dev/%s /mnt/%s umount_command = umount /dev/%s && rmdir /mnt/%s list_volume_command = cd /dev && \ls [vhs]d* @@ -63,7 +63,7 @@ show_mount_cmd = mount|gawk '/mnt/{print $1}' clean_cmd = "\rm -rf /mnt/*" cmd_list = "copy_to_command copy_from_command" - file_system = "ext3 ext2" + file_system = "ext4 ext3 ext2" mount_command = mkdir /mnt/%s && mount /dev/%s /mnt/%s umount_command = umount /dev/%s && rmdir /mnt/%s list_volume_command = cd /dev && \ls [vhs]d? diff --git a/virttest/unittest_data/testcfg.huge/guest-os.cfg b/virttest/unittest_data/testcfg.huge/guest-os.cfg index dd18852..bc33315 100644 --- a/virttest/unittest_data/testcfg.huge/guest-os.cfg +++ b/virttest/unittest_data/testcfg.huge/guest-os.cfg @@ -49,7 +49,7 @@ variants: show_mount_cmd = mount|gawk '/mnt/{print $1}' clean_cmd = "\rm -rf /mnt/*" cmd_list = "copy_to_command copy_from_command" - file_system = "ext3 ext2" + file_system = "ext4 ext3 ext2" mount_command = mkdir /mnt/%s && mount /dev/%s /mnt/%s umount_command = umount /dev/%s && rmdir /mnt/%s list_volume_command = cd /dev && \ls [vhs]d* @@ -67,7 +67,7 @@ variants: show_mount_cmd = mount|gawk '/mnt/{print $1}' clean_cmd = "\rm -rf /mnt/*" cmd_list = "copy_to_command copy_from_command" - file_system = "ext3 ext2" + file_system = "ext4 ext3 ext2" mount_command = mkdir /mnt/%s && mount /dev/%s /mnt/%s umount_command = umount /dev/%s && rmdir /mnt/%s list_volume_command = cd /dev && \ls [vhs]d? -- 1.7.7.6 _______________________________________________ Virt-test-devel mailing list [email protected] https://www.redhat.com/mailman/listinfo/virt-test-devel
