1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-09-18 21:47:23 +00:00
os-autoinst-distri-fedora/tests/disk_custom_standard_partition_ext4_postinstall.pm

22 lines
606 B
Perl
Raw Normal View History

use base "installedtest";
use strict;
use testapi;
sub run {
assert_screen "root_console";
# check that there are two partitions
validate_script_output 'fdisk -l | grep /dev/vda | wc -l', sub { $_ =~ m/3/ };
# check that vda2 is a boot partition and that the fs is ext4
validate_script_output 'mount | grep /dev/vda2', sub { $_ =~ m/on \/boot type ext4/ };
# check that vda1 is a root partition and that the fs is ext4
validate_script_output 'mount | grep /dev/vda1', sub { $_ =~ m/on \/ type ext4/ };
}
sub test_flags {
return { fatal => 1 };
}
1;
# vim: set sw=4 et: