From e9642eace5232910be389f80b93237432f6de6b0 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Tue, 18 Dec 2018 11:01:35 -0800 Subject: [PATCH] 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 --- lib/utils.pm | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/lib/utils.pm b/lib/utils.pm index cdd553a6..81ec5b01 100644 --- a/lib/utils.pm +++ b/lib/utils.pm @@ -175,10 +175,13 @@ sub console_login { # make sure we reached the console unless (check_screen($good, 30)) { # 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 - # secs, with a soft fail - RHBZ #1644919 + # unusually long in the FreeIPA tests, let's allow longer, + #with a soft fail - RHBZ #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(); }