mirror of
https://github.com/openssl/openssl.git
synced 2025-04-06 20:20:50 +08:00
Fix a few internals tests
The internals tests for chacha, poly1305 and siphash were erroneously made conditional on if mdc2 was enabled. Corrected to depend on the correct algorithms being enabled instead. Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/2991)
This commit is contained in:
parent
691e302be3
commit
e41e5d1e73
@ -16,4 +16,4 @@ setup("test_internal_chacha");
|
||||
plan skip_all => "This test is unsupported in a shared library build on Windows"
|
||||
if $^O eq 'MSWin32' && !disabled("shared");
|
||||
|
||||
simple_test("test_internal_chacha", "chacha_internal_test", "mdc2");
|
||||
simple_test("test_internal_chacha", "chacha_internal_test", "chacha");
|
||||
|
@ -16,4 +16,4 @@ setup("test_internal_poly1305");
|
||||
plan skip_all => "This test is unsupported in a shared library build on Windows"
|
||||
if $^O eq 'MSWin32' && !disabled("shared");
|
||||
|
||||
simple_test("test_internal_poly1305", "poly1305_internal_test", "mdc2");
|
||||
simple_test("test_internal_poly1305", "poly1305_internal_test", "poly1305");
|
||||
|
@ -16,4 +16,4 @@ setup("test_internal_siphash");
|
||||
plan skip_all => "This test is unsupported in a shared library build on Windows"
|
||||
if $^O eq 'MSWin32' && !disabled("shared");
|
||||
|
||||
simple_test("test_internal_siphash", "siphash_internal_test", "mdc2");
|
||||
simple_test("test_internal_siphash", "siphash_internal_test", "siphash");
|
||||
|
Loading…
x
Reference in New Issue
Block a user