From: Richard Levitte Date: Wed, 9 Dec 2020 10:30:10 +0000 (+0100) Subject: TEST: Fix test/recipes/15-test_rsa.t X-Git-Tag: openssl-3.0.0-alpha10~50 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2984445d3a09d0c4a8d66817eff9d48ee69daf51;p=thirdparty%2Fopenssl.git 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 (Merged from https://github.com/openssl/openssl/pull/13645) --- diff --git a/test/recipes/15-test_rsa.t b/test/recipes/15-test_rsa.t index 7e554579d8b..abcdb0490c9 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",