2020-11-24 13:19:04 +00:00
|
|
|
use base "installedtest";
|
|
|
|
use strict;
|
|
|
|
use testapi;
|
|
|
|
|
|
|
|
sub run {
|
|
|
|
assert_screen "root_console";
|
2020-12-03 12:00:52 +00:00
|
|
|
my $count = 3;
|
|
|
|
my $devroot = 'vda1';
|
|
|
|
my $devboot = 'vda2';
|
2020-12-04 22:59:03 +00:00
|
|
|
if (get_var('OFW') || get_var('UEFI')) {
|
|
|
|
$count = 4; # extra boot partition (PreP or ESP)
|
2020-12-03 12:00:52 +00:00
|
|
|
$devroot = 'vda2';
|
|
|
|
$devboot = 'vda3';
|
|
|
|
}
|
|
|
|
# check number of partitions
|
|
|
|
script_run 'fdisk -l | grep /dev/vda'; # debug
|
|
|
|
validate_script_output 'fdisk -l | grep /dev/vda | wc -l', sub { $_ =~ m/$count/ };
|
|
|
|
# check mounted partitions are ext4 fs
|
|
|
|
script_run 'mount | grep /dev/vda'; # debug
|
|
|
|
validate_script_output "mount | grep /dev/$devboot", sub { $_ =~ m/on \/boot type ext4/ };
|
|
|
|
validate_script_output "mount | grep /dev/$devroot", sub { $_ =~ m/on \/ type ext4/ };
|
2020-11-24 13:19:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sub test_flags {
|
|
|
|
return { fatal => 1 };
|
|
|
|
}
|
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
|
|
# vim: set sw=4 et:
|