mirror of
				https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
				synced 2025-10-30 23:05:58 +00:00 
			
		
		
		
	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>
		
			
				
	
	
		
			29 lines
		
	
	
		
			742 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			742 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);
 | |
|     }
 | |
|     assert_screen "root_console";
 | |
|     # for aarch64 non-english tests
 | |
|     console_loadkeys_us;
 | |
|     # this test shows if the system is booted with efi
 | |
|     assert_script_run '[ -d /sys/firmware/efi/ ]';
 | |
|     # if Secure Boot should be enabled, check it is; if it isn't,
 | |
|     # that *probably* indicates a test system issue not a distro bug,
 | |
|     # but we want to know either way
 | |
|     validate_script_output('mokutil --sb-state', sub { m/SecureBoot enabled/ }) if (get_var("UEFI_SECURE"));
 | |
| }
 | |
| 
 | |
| sub test_flags {
 | |
|     return {fatal => 1};
 | |
| }
 | |
| 
 | |
| 1;
 | |
| 
 | |
| # vim: set sw=4 et:
 |