Skip to content

Commit

Permalink
Merge pull request os-autoinst#18092 from lemon-suse/fix-system-role-…
Browse files Browse the repository at this point in the history
…issue-o3-aarch

Fix system-role issue on aarch64 on TW
  • Loading branch information
rakoenig authored Nov 14, 2023
2 parents 51dbcb3 + e6016cc commit 6560997
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/installation/system_role.pm
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ use warnings;
use testapi;
use Utils::Architectures;
use version_utils qw(is_sle is_opensuse is_microos is_sle_micro);
use YaST::workarounds;

my %role_hotkey = (
gnome => 's',
Expand All @@ -35,6 +36,11 @@ sub change_system_role {
}
else {
assert_and_click "system-role-$system_role";
if (is_aarch64) {
if (!check_screen("system-role-$system_role-selected")) {
apply_workaround_poo124652("system-role-$system_role-selected", 100);
}
}
assert_and_click "system-role-$system_role-selected";
}
}
Expand Down

0 comments on commit 6560997

Please sign in to comment.