1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-09-24 15:47:23 +00:00

Give console login even longer on aarch64 for #1644919

Even an extra 30 secs doesn't seem to be long enough for the
aarch64 tests.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2018-12-18 11:01:35 -08:00
parent ea867ef431
commit e9642eace5

View File

@ -175,10 +175,13 @@ sub console_login {
# make sure we reached the console # make sure we reached the console
unless (check_screen($good, 30)) { unless (check_screen($good, 30)) {
# as of 2018-10 we have a bug in sssd which makes this take # as of 2018-10 we have a bug in sssd which makes this take
# unusually long in the FreeIPA tests, let's allow another 30 # unusually long in the FreeIPA tests, let's allow longer,
# secs, with a soft fail - RHBZ #1644919 #with a soft fail - RHBZ #1644919
record_soft_failure "Console login is taking a long time - #1644919?"; record_soft_failure "Console login is taking a long time - #1644919?";
assert_screen($good, 30); my $timeout = 30;
# even an extra 30 secs isn't long enough on aarch64...
$timeout= 90 if (get_var("ARCH") eq "aarch64");
assert_screen($good, $timeout);
} }
_console_login_finish(); _console_login_finish();
} }