mirror of
				https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
				synced 2025-10-30 23:05:58 +00:00 
			
		
		
		
	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>
		
			
				
	
	
		
			23 lines
		
	
	
		
			610 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			610 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
| use base "installedtest";
 | |
| use strict;
 | |
| use testapi;
 | |
| 
 | |
| sub run {
 | |
|     assert_screen "root_console";
 | |
|     # check number of partitions
 | |
|     script_run 'fdisk -l | grep /dev/vda';    # debug
 | |
|     validate_script_output 'fdisk -l | grep /dev/vda | wc -l', sub { $_ =~ m/4/ };
 | |
|     # check mounted partitions are ext4 fs
 | |
|     script_run 'mount | grep /dev/vda';    # debug
 | |
|     validate_script_output "mount | grep /dev/vda2", sub { $_ =~ m/on \/boot type ext4/ };
 | |
|     validate_script_output "mount | grep /dev/vda3", sub { $_ =~ m/on \/ type ext4/ };
 | |
| }
 | |
| 
 | |
| sub test_flags {
 | |
|     return {fatal => 1};
 | |
| }
 | |
| 
 | |
| 1;
 | |
| 
 | |
| # vim: set sw=4 et:
 |