From c946801df6d091a045e3b8b574fd3a667c9ca74f Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Mon, 19 Jun 2023 12:15:41 +0200 Subject: [PATCH] tweak 'full' disk image to avoid #2214342 With the new 2G EFI system partition size, the delete_partial test that uses this disk image is failing. We've reported the bug, but we don't want the test to fail the same way every day, we want to catch any other bugs that show up. Tweaking the disk image so it has a 6G and a 4G partition (instead of two 5G partitions) and the test uses the 6G partition seems to work around the problem, so let's do that. Signed-off-by: Adam Williamson --- hdds.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hdds.json b/hdds.json index 6299e96..af1c2c7 100644 --- a/hdds.json +++ b/hdds.json @@ -9,12 +9,12 @@ "filesystem" : "ext4", "type" : "p", "start" : "4096", - "end" : "10485760" + "end" : "12582093" }, { "filesystem" : "ext4", "type" : "p", - "start" : "10485761", + "start" : "12582094", "end" : "-4097" } ],