Skip to content

Commit

Permalink
final
Browse files Browse the repository at this point in the history
  • Loading branch information
tbaev committed Oct 18, 2024
1 parent f933c1a commit ed72ce9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion lib/main_common.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2406,7 +2406,6 @@ sub set_mu_virt_vars {
set_var('EXTENDED_SECURITY', (get_var('INCIDENT_REPO') =~ /LTSS-Extended-Security/) ? 1 : 0);
# Set PATCH_WITH_ZYPPER
set_var('PATCH_WITH_ZYPPER', 1) unless (check_var('PATCH_WITH_ZYPPER', 0));
bmwqemu::save_vars();
}

sub load_hypervisor_tests {
Expand Down
4 changes: 2 additions & 2 deletions lib/virt_autotest/common.pm
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ if (get_var("REGRESSION", '') =~ /xen/) {
name => 'sles15sp6',
},
);
%guests = get_var('TERADATA') ? %guests{"sles${guest_version}TD"} : check_var('EXTENDED_SECURITY', '1') ? %guests{"sles12sp5ES"} : %guests{"sles${guest_version}"};
%guests = get_var('TERADATA') ? %guests{"sles${guest_version}TD"} : (get_var('INCIDENT_REPO') =~ /LTSS-Extended-Security/) ? %guests{"sles${guest_version}ES"} : %guests{"sles${guest_version}"};

} elsif (get_var("REGRESSION", '') =~ /hyperv/) {
%guests = (
Expand Down Expand Up @@ -297,7 +297,7 @@ if (get_var("REGRESSION", '') =~ /xen/) {
vm_name => 'sles-15.6_openQA-virtualization-maintenance',
},
);
%guests = get_var('TERADATA') ? %guests{"sles${guest_version}TD"} : check_var('EXTENDED_SECURITY', '1') ? %guests{"sles12sp5ES"} : %guests{"sles${guest_version}"};
%guests = get_var('TERADATA') ? %guests{"sles${guest_version}TD"} : (get_var('INCIDENT_REPO') =~ /LTSS-Extended-Security/) ? %guests{"sles${guest_version}ES"} : %guests{"sles${guest_version}"};
}

our %imports = (); # imports are virtual machines that we don't install but just import. We test those separately.
Expand Down

0 comments on commit ed72ce9

Please sign in to comment.