mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-01 05:54:22 +00:00
7e0cd0898e
This essentially inverts the x86_64 machines so that '64bit' is UEFI and instead of a variant 'uefi' machine we have a variant 'bios' machine that is BIOS. The point is to make UEFI testing the default. We also enable Secure Boot in the UEFI testing, and add a test of UEFI fallback booting on various products. Signed-off-by: Adam Williamson <awilliam@redhat.com>
31 lines
869 B
Perl
31 lines
869 B
Perl
use base "installedtest";
|
|
use strict;
|
|
use testapi;
|
|
use utils;
|
|
|
|
sub run {
|
|
my $self = shift;
|
|
if (not(check_screen "root_console", 0)) {
|
|
$self->root_console(tty => 4);
|
|
}
|
|
# now try deleting the "Fedora" boot entry and rebooting, to check the fallback path
|
|
assert_script_run('efibootmgr -b $(efibootmgr | grep Fedora | head -1 | cut -f1 | sed -e "s,[^0-9],,g") -B');
|
|
# check that worked
|
|
validate_script_output('efibootmgr', sub { $_ !~ m/.*Fedora.*/s });
|
|
type_string("reboot\n");
|
|
boot_to_login_screen;
|
|
$self->root_console(tty => 3);
|
|
# Fedora entry should have been recreated
|
|
validate_script_output('efibootmgr', sub { m/Fedora/ });
|
|
# SB should still be enabled
|
|
validate_script_output('mokutil --sb-state', sub { m/SecureBoot enabled/ });
|
|
}
|
|
|
|
sub test_flags {
|
|
return {fatal => 1};
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|