diff options
author | Richard Levitte <levitte@openssl.org> | 2020-12-09 11:30:10 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2020-12-15 14:27:23 +0100 |
commit | 2984445d3a09d0c4a8d66817eff9d48ee69daf51 (patch) | |
tree | 5228a48ceaa95d848acb275e03dfb1919b1e146e | |
parent | 542b84881c33f0c9f67aa50b46557abd1ffba801 (diff) | |
download | openssl-new-2984445d3a09d0c4a8d66817eff9d48ee69daf51.tar.gz |
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)
-rw-r--r-- | test/recipes/15-test_rsa.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/recipes/15-test_rsa.t b/test/recipes/15-test_rsa.t index 7e554579d8..abcdb0490c 100644 --- a/test/recipes/15-test_rsa.t +++ b/test/recipes/15-test_rsa.t @@ -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", |