From f538b5051183a58a3dd4e7e4f69332638ccb03ab Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Wed, 2 Apr 2025 15:36:11 -0700 Subject: [PATCH] blivet_btrfs_preserve_home: slow down root deletion a bit it seems like sometimes we delete the entire btrfs volume instead of the root device we're trying to delete; I think this is because we click delete *immediately* after clicking the device, and that might be too fast. Let's see if a wait_still_screen helps. See: https://openqa.fedoraproject.org/tests/3353598 https://openqa.fedoraproject.org/tests/3299570 etc. Signed-off-by: Adam Williamson --- tests/disk_custom_blivet_btrfs_preserve_home.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/disk_custom_blivet_btrfs_preserve_home.pm b/tests/disk_custom_blivet_btrfs_preserve_home.pm index 767eab58..734c729e 100644 --- a/tests/disk_custom_blivet_btrfs_preserve_home.pm +++ b/tests/disk_custom_blivet_btrfs_preserve_home.pm @@ -80,6 +80,7 @@ sub run { # continue to delete them. while (check_screen "anaconda_blivet_part_root_exists", 2) { assert_and_click "anaconda_blivet_part_root_exists"; + wait_still_screen 2; assert_and_click "anaconda_blivet_part_delete"; assert_and_click "anaconda_blivet_btn_ok"; sleep 5;