From: Richard Levitte Date: Sun, 20 Sep 2015 00:03:19 +0000 (+0200) Subject: Correct sha tests X-Git-Tag: OpenSSL_1_1_0-pre1~583 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=6ff42117815bdba9e84b049e4da3455a5baa7b85;p=oweals%2Fopenssl.git Correct sha tests These tests were checking for specific sha variants, when they should just check if "sha" is disabled. Reviewed-by: Stephen Henson --- diff --git a/test/recipes/05-test_sha1.t b/test/recipes/05-test_sha1.t index 9f8a570356..310022e604 100644 --- a/test/recipes/05-test_sha1.t +++ b/test/recipes/05-test_sha1.t @@ -2,4 +2,4 @@ use OpenSSL::Test::Simple; -simple_test("test_sha1", "sha1test", "sha1"); +simple_test("test_sha1", "sha1test", "sha"); diff --git a/test/recipes/05-test_sha256.t b/test/recipes/05-test_sha256.t index cb63aa82d9..02058c748f 100644 --- a/test/recipes/05-test_sha256.t +++ b/test/recipes/05-test_sha256.t @@ -2,4 +2,4 @@ use OpenSSL::Test::Simple; -simple_test("test_sha256", "sha256t", "sha256"); +simple_test("test_sha256", "sha256t", "sha"); diff --git a/test/recipes/05-test_sha512.t b/test/recipes/05-test_sha512.t index f353ac1373..6522ddd6b7 100644 --- a/test/recipes/05-test_sha512.t +++ b/test/recipes/05-test_sha512.t @@ -2,4 +2,4 @@ use OpenSSL::Test::Simple; -simple_test("test_sha512", "sha512t", "sha512"); +simple_test("test_sha512", "sha512t", "sha");