extend the wait_still_screen time in upgrade_pre too

I have a better fix for this coming, but it's a big change that
requires review, so for now, do this. The tests are actually
failing because the 30 second wait_still_screen is too short(!)
- it's triggering while the test is sitting at the 'full Fedora
logo' bootsplash screen then doing a 30 second assert_screen
graphical_login, which is failing because it actually takes
more than 60 seconds to get from the 'full F' screen to the
login screen. So let's just make the wait_still_screen 45
seconds for now.
This commit is contained in:
Adam Williamson 2016-09-24 16:39:52 -07:00
parent 032d8f76a3
commit 683b819bf9

View File

@ -11,7 +11,7 @@ sub run {
# wait for either graphical or text login
if (get_var('DESKTOP')) {
$self->boot_to_login_screen("graphical_login", 30, 120); # DM takes time to load
$self->boot_to_login_screen("graphical_login", 45, 120); # DM takes time to load
} else {
$self->boot_to_login_screen();
}
@ -32,7 +32,7 @@ sub run {
}
if (get_var('DESKTOP')) {
$self->boot_to_login_screen("graphical_login", 30, 120); # DM takes time to load
$self->boot_to_login_screen("graphical_login", 45, 120); # DM takes time to load
} else {
$self->boot_to_login_screen();
}