[openssl-commits] [openssl] master update

Richard Levitte levitte at openssl.org
Tue Sep 8 00:48:10 UTC 2015


The branch master has been updated
       via  55b2258859da5e8156dc9091911ce182945291fe (commit)
      from  e51fb759a6f1d81eee422703dc424aaf1e63a80b (commit)


- Log -----------------------------------------------------------------
commit 55b2258859da5e8156dc9091911ce182945291fe
Author: Richard Levitte <levitte at openssl.org>
Date:   Tue Sep 8 01:23:49 2015 +0200

    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 at ghedini.me>
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>

-----------------------------------------------------------------------

Summary of changes:
 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 469d43f..ba7a92b 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 7cdfea6..acccea8 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 aa4622f..992bb96 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");


More information about the openssl-commits mailing list