Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

installation/await_install: Bump timeout for powepc #13885

Merged
merged 1 commit into from Dec 20, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 4 additions & 2 deletions tests/installation/await_install.pm
Expand Up @@ -105,7 +105,9 @@ sub _set_timeout {
sub run {
my $self = shift;
# NET isos are slow to install
my $timeout = is_s390x ? 2400 : 2000;
# If this timeout needs to be bumped again, we might be having a bigger network problem
# or a peformance problem on the installer
my $timeout = (is_s390x || is_ppc64le) ? 2400 : 2000;

# workaround for yast popups and
# detect "Wrong Digest" error to end test earlier
Expand All @@ -130,7 +132,7 @@ sub run {

my $mouse_x = 1;
while (1) {
die 'timeout hit on during await_install' if $timeout <= 0;
die "timeout ($timeout) hit on during await_install" if $timeout <= 0;
my $ret = check_screen \@tags, 30;
$timeout -= 30;
diag("left total await_install timeout: $timeout");
Expand Down