mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-01 05:54:22 +00:00
f7a8550258
From anaconda-37.12.1, anaconda defaults to GPT for all BIOS installs. So we need to create a BIOS boot partition when doing a BIOS install. I think all other potential configs (x86_64 UEFI, aarch64 (UEFI), ppc64le (OFW)) are covered under the other two paths, so just making this `else` should be OK. Signed-off-by: Adam Williamson <awilliam@redhat.com>
29 lines
717 B
Perl
29 lines
717 B
Perl
use base "installedtest";
|
|
use strict;
|
|
use testapi;
|
|
|
|
sub run {
|
|
assert_screen "root_console";
|
|
|
|
# check that lvm is present:
|
|
validate_script_output "lvdisplay | grep 'LV Status'", sub { $_ =~ m/available/ };
|
|
|
|
# Check for standard LVM attributes, w - writable, i-inherited, a-active, o-open
|
|
validate_script_output "lvs -o lv_attr", sub { $_ =~ m/wi-ao/ };
|
|
|
|
# Check that the partitions are ext4.
|
|
validate_script_output "mount | grep /dev/vda2", sub { $_ =~ m/on \/boot type ext4/ };
|
|
|
|
# There should be one partition in the LVM.
|
|
validate_script_output "mount | grep /dev/mapper", sub { $_ =~ m/on \/ type ext4/ };
|
|
|
|
}
|
|
|
|
sub test_flags {
|
|
return {fatal => 1};
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|