From f7305b1d82b3d1e53c373563b7815e5292ab9295 Mon Sep 17 00:00:00 2001 From: Santiago Zarate Date: Mon, 22 Jul 2024 15:43:14 +0200 Subject: [PATCH] Softfail for bsc#1220722 --- tests/microos/image_checks.pm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/microos/image_checks.pm b/tests/microos/image_checks.pm index 452e03722917..5641d8f1a4b4 100644 --- a/tests/microos/image_checks.pm +++ b/tests/microos/image_checks.pm @@ -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