Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix left_sectors size on sle_micro 6.0 #18451

Merged
merged 1 commit into from
Jan 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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); # jsc#PED-3494
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