From afc67da20d83109af19310cf7b4612d9d2d35e29 Mon Sep 17 00:00:00 2001 From: Trevor Cooper Date: Thu, 9 Dec 2021 16:11:18 -0800 Subject: [PATCH 1/2] correct needle to properly detect network connected (#69) Per Testing Meeting today. Merging. --- .../network/rocky-anaconda_network_connected-20211121.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/needles/anaconda/network/rocky-anaconda_network_connected-20211121.json b/needles/anaconda/network/rocky-anaconda_network_connected-20211121.json index 585183f3..6e4a9f2f 100644 --- a/needles/anaconda/network/rocky-anaconda_network_connected-20211121.json +++ b/needles/anaconda/network/rocky-anaconda_network_connected-20211121.json @@ -3,7 +3,7 @@ { "height": 38, "type": "match", - "width": 42, + "width": 74, "xpos": 719, "ypos": 339 } -- 2.43.5 From eac162038ab5892264f7a805215ef7b0cd349769 Mon Sep 17 00:00:00 2001 From: Trevor Cooper Date: Wed, 15 Dec 2021 23:10:04 -0800 Subject: [PATCH 2/2] extend timeouts for Rocky --- tests/_do_install_and_reboot.pm | 4 ++-- tests/install_text.pm | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/_do_install_and_reboot.pm b/tests/_do_install_and_reboot.pm index af2d6225..03105f65 100644 --- a/tests/_do_install_and_reboot.pm +++ b/tests/_do_install_and_reboot.pm @@ -112,8 +112,8 @@ sub run { # we're on a debug kernel, debug kernel installs are really slow. my $timeout = 1800; my $version = lc(get_var('VERSION')); - if ($version eq "rawhide") { - $timeout = 2400; + if ($version eq "rawhide" || lc(get_var('DISTRI')) eq "rocky") { + $timeout = 4800; } # workstation especially has an unfortunate habit of kicking in # the screensaver during install... diff --git a/tests/install_text.pm b/tests/install_text.pm index 26f015d7..f86ba721 100644 --- a/tests/install_text.pm +++ b/tests/install_text.pm @@ -141,7 +141,7 @@ sub run { # begin installation console_type_wait("b\n"); - # When simulated crash is planned, then proceed with the crash routines and finish, + # When simulated crash is planned, then proceed with the crash routines and finish, # otherwise proceed normally and do if (get_var("CRASH_REPORT")) { crash_anaconda_text; @@ -153,7 +153,7 @@ sub run { # we're on a debug kernel, debug kernel installs are really slow. my $timeout = 1800; if (lc(get_var('VERSION')) eq "rawhide" || lc(get_var('DISTRI')) eq "rocky") { - $timeout = 2400; + $timeout = 4800; } if (testapi::is_serial_terminal) { -- 2.43.5