Skip to content

Commit

Permalink
Merge pull request #19976 from realcharmer/dsa
Browse files Browse the repository at this point in the history
Expect a failure with DSA and OpenSSL 3 in FIPS
  • Loading branch information
realcharmer authored Aug 16, 2024
2 parents 7d6d3b8 + 2bff663 commit dd476dd
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions tests/fips/openssl/openssl_pubkey_dsa.pm
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ use testapi;
use serial_terminal 'select_serial_terminal';
use strict;
use warnings;
use version_utils qw(is_transactional);
use version_utils qw(is_transactional is_sle is_sle_micro);

sub run {
select_serial_terminal;
Expand Down Expand Up @@ -71,8 +71,14 @@ sub run {
}

sub test_flags {
#poo160197 workaround since rollback seems not working with swTPM
return {no_rollback => is_transactional() ? 1 : 0};
return {
#poo160197 workaround since rollback seems not working with swTPM
no_rollback => is_transactional() ? 1 : 0,

# The test is expect to fail on 15-SP6+ and SLE Micro 6.0+ in FIPS mode with OpenSSL 3
# poo#161891
ignore_failure => (is_sle('>=15-SP6') or is_sle_micro('>=6.0')) ? 1 : 0
};
}

1;

0 comments on commit dd476dd

Please sign in to comment.