From 683b819bf9dea0aff2e2b382ebe561bf8610556e Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Sat, 24 Sep 2016 16:39:52 -0700 Subject: [PATCH] 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. --- tests/upgrade_preinstall.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/upgrade_preinstall.pm b/tests/upgrade_preinstall.pm index b8eb2a7c..040d0879 100644 --- a/tests/upgrade_preinstall.pm +++ b/tests/upgrade_preinstall.pm @@ -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(); }