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

Accept - despite it does not match zypper lifecycle #16763

Merged
merged 1 commit into from Mar 31, 2023
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
3 changes: 2 additions & 1 deletion tests/console/zypper_lifecycle.pm
Expand Up @@ -154,8 +154,9 @@ sub run {

select_console 'user-console';
# verify that package eol defaults to product eol
# dash is accepted in prod EOL, despite it does not match zypper lifecycle, see poo#126794
$output = script_output "zypper lifecycle $package", 300;
unless ($output =~ /$package(-\S+)?\s+$product_eol/) {
unless ($output =~ /$package(-\S+)?\s+($product_eol|-)/) {
die "$package lifecycle entry incorrect:\nOutput: '$output', expected: '/$package-\\S+\\s+$product_eol'";
}

Expand Down