From 7cbdf4efb16fbd64fdd371db21da16de3765c3d2 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Mon, 10 Nov 2025 14:41:19 -0800 Subject: [PATCH] Longer wait for console_loadkeys_us Seems to be taking longer than 3 seconds on French installs in Rawhide, e.g. https://openqa.fedoraproject.org/tests/3947220#step/_do_install_and_reboot/22 Signed-off-by: Adam Williamson --- lib/utils.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/utils.pm b/lib/utils.pm index 5e207de7..9ebe0e22 100644 --- a/lib/utils.pm +++ b/lib/utils.pm @@ -351,11 +351,11 @@ sub console_loadkeys_us { if (get_var('LANGUAGE') eq 'french') { script_run "loqdkeys us", 0; # might take a few secs - sleep 3; + wait_still_screen 6; } elsif (get_var('LANGUAGE') eq 'japanese' || get_var('LANGUAGE') eq 'turkish') { script_run "loadkeys us", 0; - sleep 3; + wait_still_screen 6; } }