Skip to content

Commit

Permalink
Softfail for bsc#1220722
Browse files Browse the repository at this point in the history
  • Loading branch information
foursixnine committed Jul 26, 2024
1 parent 1866ed8 commit f7305b1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/microos/image_checks.pm
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ sub run {

# Verify that there is no unpartitioned space left
my $left_sectors = (is_sle_micro("5.4+") && is_aarch64) ? 2048 : 0;
if (is_sle_micro("6.0+") && is_aarch64 && get_var("HDD_1") =~ /qcow2/) {
$left_sectors = 0;
record_soft_failure "bsc#1220722: no unpartitioned space left on 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

0 comments on commit f7305b1

Please sign in to comment.