6b0de3aec3
This PR add the installation test which uses Standard partitioning with an ext4 filesystem to cover one of the new requirements as described in issue #202. Fixed after a review
22 lines
606 B
Perl
22 lines
606 B
Perl
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:
|