44e8a76c56
tcooper confirmed on the call. Merging it. * Extend product test commands * Increase disk size for `install_standard_partition_ext4` because some PACKAGE_SETs are too big * Limit the license acceptance to only run on tests which run for ISO installations It is unfortunately not that easy to limit this to ISOs due to that the misterous limit to HDD_1 and not `custom_resize_lvm` * Make sure that the disk post installs run in a shell it happens that the previous test ends in the GUI Co-authored-by: lumarel <lumarel@users.noreply.github.com>
39 lines
1.1 KiB
Perl
39 lines
1.1 KiB
Perl
use base "installedtest";
|
|
use strict;
|
|
use testapi;
|
|
use utils;
|
|
|
|
sub run {
|
|
my $self = shift;
|
|
unless (check_screen "root_console", 0) {
|
|
$self->root_console(tty=>4);
|
|
}
|
|
assert_screen "root_console";
|
|
my $count = 4;
|
|
my $devroot = 'vda1';
|
|
my $devboot = 'vda2';
|
|
my $devswap = 'vda3';
|
|
if (get_var('OFW') || get_var('UEFI')) {
|
|
$count = 5; # extra boot partition (PreP or ESP)
|
|
$devroot = 'vda2';
|
|
$devboot = 'vda3';
|
|
$devswap = 'vda4';
|
|
}
|
|
# 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/ };
|
|
validate_script_output "swapon --show | grep /dev/$devswap", sub { $_ =~ m/ partition / };
|
|
}
|
|
|
|
sub test_flags {
|
|
return { fatal => 1 };
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|