From 55b2258859da5e8156dc9091911ce182945291fe Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Tue, 8 Sep 2015 01:23:49 +0200 Subject: [PATCH] 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 --- test/recipes/05-test_hmac.t | 2 +- test/recipes/15-test_ecdh.t | 2 +- test/recipes/15-test_ecdsa.t | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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"); -- 2.34.1