mirror of
https://github.com/openssl/openssl.git
synced 2025-02-17 14:32:04 +08:00
TEST: Fix test/recipes/15-test_rsa.t
Perl strings should be compared with 'eq', not '=='. This only generates a perl warning, so wasn't immediately noticed. Also, remove the check of disabled 'dsa'. That never made reak sense. Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> (Merged from https://github.com/openssl/openssl/pull/13645)
This commit is contained in:
parent
542b84881c
commit
2984445d3a
@ -49,7 +49,7 @@ sub run_rsa_tests {
|
||||
|
||||
SKIP: {
|
||||
skip "Skipping msblob conversion test", 1
|
||||
if disabled($cmd) || disabled("dsa") || $cmd == 'pkey';
|
||||
if disabled($cmd) || $cmd eq 'pkey';
|
||||
|
||||
subtest "$cmd conversions -- public key" => sub {
|
||||
tconversion( -type => 'msb', -prefix => "$cmd-msb-pub",
|
||||
|
Loading…
Reference in New Issue
Block a user