Commit 55b22588 authored by Richard Levitte's avatar Richard Levitte
Browse files

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: default avatarRich Salz <rsalz@openssl.org>
parent e51fb759
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2,4 +2,4 @@

use OpenSSL::Test::Simple;

simple_test("test_hmac", "hmactest", "hmac");
simple_test("test_hmac", "hmactest");
+1 −1
Original line number Diff line number Diff line
@@ -2,4 +2,4 @@

use OpenSSL::Test::Simple;

simple_test("test_ecdh", "ecdhtest", "ecdh");
simple_test("test_ecdh", "ecdhtest", "ec");
+1 −1
Original line number Diff line number Diff line
@@ -2,4 +2,4 @@

use OpenSSL::Test::Simple;

simple_test("test_ecdsa", "ecdsatest", "ecdsa");
simple_test("test_ecdsa", "ecdsatest", "ec");