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 <alessandro@ghedini.me>

Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
Richard Levitte 2015-09-08 01:23:49 +02:00
parent e51fb759a6
commit 55b2258859
3 changed files with 3 additions and 3 deletions

View File

@ -2,4 +2,4 @@
use OpenSSL::Test::Simple;
simple_test("test_hmac", "hmactest", "hmac");
simple_test("test_hmac", "hmactest");

View File

@ -2,4 +2,4 @@
use OpenSSL::Test::Simple;
simple_test("test_ecdh", "ecdhtest", "ecdh");
simple_test("test_ecdh", "ecdhtest", "ec");

View File

@ -2,4 +2,4 @@
use OpenSSL::Test::Simple;
simple_test("test_ecdsa", "ecdsatest", "ecdsa");
simple_test("test_ecdsa", "ecdsatest", "ec");