From 0837bd869b4f3c95ff78f29a05cb94c10b39d54f Mon Sep 17 00:00:00 2001 From: Todd Short Date: Thu, 16 Feb 2017 09:09:39 -0500 Subject: [PATCH] Internal siphash tests are not run. Reviewed-by: Andy Polyakov Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/2649) --- test/recipes/03-test_internal.t | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/recipes/03-test_internal.t b/test/recipes/03-test_internal.t index 33cb7a3b53..e63f0d20c0 100644 --- a/test/recipes/03-test_internal.t +++ b/test/recipes/03-test_internal.t @@ -19,7 +19,8 @@ my %known_internal_tests = poly1305_internal_test => !disabled("poly1305") && !$shared_windows, modes_internal_test => !$shared_windows, asn1_internal_test => !$shared_windows, - x509_internal_test => !$shared_windows ); + x509_internal_test => !$shared_windows, + siphash_internal_test => !disabled("siphash") && !$shared_windows ); plan tests => scalar keys %known_internal_tests; -- 2.25.1