Skip to content

Commit

Permalink
Fix left_sectors size on sle_micro6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rfan1 committed Jan 15, 2024
1 parent efad569 commit d2a5326
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions tests/microos/image_checks.pm
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ sub run {

# Verify that there is no unpartitioned space left
my $left_sectors = (is_sle_micro("5.4+") && is_aarch64) ? 2048 : 0;
$left_sectors = 4062 if (is_sle_micro(">=6.0") && is_aarch64);
validate_script_output("sfdisk --list-free /dev/$disk", qr/Unpartitioned space .* $left_sectors sectors/);

# Verify that the filesystem mounted at /var grew beyond the default 5GiB
Expand Down
2 changes: 1 addition & 1 deletion tests/microos/selfinstall.pm
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ sub run {
assert_screen 'slem-selfinstall-overwrite-drive';
send_key 'ret';
# Use firmware boot manager of aarch64 to boot HDD
$self->handle_uefi_boot_disk_workaround if is_aarch64;
#$self->handle_uefi_boot_disk_workaround if is_aarch64;

my $no_cd;
# workaround failed *kexec* execution on UEFI with SecureBoot
Expand Down

0 comments on commit d2a5326

Please sign in to comment.