Extend some boot timeouts in upgrade tests
Sometimes rebooting during upgrade tests seems to take longer than these timeouts allow, so let's bump them a bit. Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
parent
c69b01f447
commit
8754611eef
@ -11,12 +11,12 @@ sub run {
|
|||||||
|
|
||||||
# handle bootloader, if requested
|
# handle bootloader, if requested
|
||||||
if (get_var("GRUB_POSTINSTALL")) {
|
if (get_var("GRUB_POSTINSTALL")) {
|
||||||
do_bootloader(postinstall=>1, params=>get_var("GRUB_POSTINSTALL"));
|
do_bootloader(postinstall=>1, params=>get_var("GRUB_POSTINSTALL"), timeout=>120);
|
||||||
}
|
}
|
||||||
|
|
||||||
# decrypt if necessary
|
# decrypt if necessary
|
||||||
if (get_var("ENCRYPT_PASSWORD")) {
|
if (get_var("ENCRYPT_PASSWORD")) {
|
||||||
boot_decrypt(60);
|
boot_decrypt(120);
|
||||||
}
|
}
|
||||||
|
|
||||||
boot_to_login_screen;
|
boot_to_login_screen;
|
||||||
|
@ -35,14 +35,15 @@ sub run {
|
|||||||
check_screen ["upgrade_fail", "bootloader"], 15;
|
check_screen ["upgrade_fail", "bootloader"], 15;
|
||||||
die "DNF reported failure" if (match_has_tag "upgrade_fail");
|
die "DNF reported failure" if (match_has_tag "upgrade_fail");
|
||||||
|
|
||||||
# handle bootloader, if requested
|
# handle bootloader, if requested; set longer timeout as sometimes
|
||||||
|
# reboot here seems to take a long time
|
||||||
if (get_var("GRUB_POSTINSTALL")) {
|
if (get_var("GRUB_POSTINSTALL")) {
|
||||||
do_bootloader(postinstall=>1, params=>get_var("GRUB_POSTINSTALL"));
|
do_bootloader(postinstall=>1, params=>get_var("GRUB_POSTINSTALL"), timeout=>120);
|
||||||
}
|
}
|
||||||
|
|
||||||
# decrypt, if encrypted
|
# decrypt, if encrypted
|
||||||
if (get_var("ENCRYPT_PASSWORD")) {
|
if (get_var("ENCRYPT_PASSWORD")) {
|
||||||
boot_decrypt(60);
|
boot_decrypt(120);
|
||||||
# in encrypted case we need to wait a bit so postinstall test
|
# in encrypted case we need to wait a bit so postinstall test
|
||||||
# doesn't bogus match on the encryption prompt we just completed
|
# doesn't bogus match on the encryption prompt we just completed
|
||||||
# before it disappears from view
|
# before it disappears from view
|
||||||
|
Loading…
Reference in New Issue
Block a user