From: Richard Levitte Date: Mon, 7 Sep 2015 23:23:49 +0000 (+0200) Subject: Fix a few tests that depended on the wrong algorithm check X-Git-Tag: OpenSSL_1_1_0-pre1~643 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=55b2258859da5e8156dc9091911ce182945291fe Fix a few tests that depended on the wrong algorithm check test_ecdh and test_ecdsa are made to depend on no-ec being false. test_hmac is made not to depend on algorithm at all. Based on a contribution by Alessandro Ghedini Reviewed-by: Rich Salz --- diff --git a/test/recipes/05-test_hmac.t b/test/recipes/05-test_hmac.t index 469d43f14d..ba7a92b931 100644 --- a/test/recipes/05-test_hmac.t +++ b/test/recipes/05-test_hmac.t @@ -2,4 +2,4 @@ use OpenSSL::Test::Simple; -simple_test("test_hmac", "hmactest", "hmac"); +simple_test("test_hmac", "hmactest"); diff --git a/test/recipes/15-test_ecdh.t b/test/recipes/15-test_ecdh.t index 7cdfea6f91..acccea83ba 100644 --- a/test/recipes/15-test_ecdh.t +++ b/test/recipes/15-test_ecdh.t @@ -2,4 +2,4 @@ use OpenSSL::Test::Simple; -simple_test("test_ecdh", "ecdhtest", "ecdh"); +simple_test("test_ecdh", "ecdhtest", "ec"); diff --git a/test/recipes/15-test_ecdsa.t b/test/recipes/15-test_ecdsa.t index aa4622f9d7..992bb966bd 100644 --- a/test/recipes/15-test_ecdsa.t +++ b/test/recipes/15-test_ecdsa.t @@ -2,4 +2,4 @@ use OpenSSL::Test::Simple; -simple_test("test_ecdsa", "ecdsatest", "ecdsa"); +simple_test("test_ecdsa", "ecdsatest", "ec");