Skip to content

Commit

Permalink
Merge pull request #7438 from jknphy/fix_switch_to_console_welcome
Browse files Browse the repository at this point in the history
Fix switch to console in welcome and addon_dud schedule
  • Loading branch information
jknphy committed May 14, 2019
2 parents 31a20e5 + 9827b7e commit 37c4bbe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/main_common.pm
Original file line number Diff line number Diff line change
Expand Up @@ -808,10 +808,10 @@ sub load_inst_tests {
loadtest "installation/dud_addon";
}
loadtest "installation/welcome";
loadtest 'installation/accept_license' if has_license_to_accept;
if (get_var('DUD_ADDONS') && is_sle('<15')) {
loadtest "installation/dud_addon";
}
loadtest 'installation/accept_license' if has_license_to_accept;
loadtest 'installation/network_configuration' if get_var('OFFLINE_SUT');
if (get_var('IBFT')) {
loadtest "installation/iscsi_configuration";
Expand Down
4 changes: 3 additions & 1 deletion tests/installation/welcome.pm
Original file line number Diff line number Diff line change
Expand Up @@ -149,10 +149,12 @@ sub run {
}
assert_screen('select-product-' . $product);
}

# Verify install arguments passed by bootloader
# Linuxrc writes its settings in /etc/install.inf
if (!is_remote_backend && get_var('VALIDATE_INST_SRC')) {
# Ensure to have the focus in some non-selectable control, i.e.: Keyboard Test
# before switching to console during installation
wait_screen_change { send_key 'alt-y' };
wait_screen_change { send_key 'ctrl-alt-shift-x' };
my $method = uc get_required_var('INSTALL_SOURCE');
my $mirror_src = get_required_var("MIRROR_$method");
Expand Down

0 comments on commit 37c4bbe

Please sign in to comment.