Commit cdf33504 authored by Dr. Matthias St. Pierre's avatar Dr. Matthias St. Pierre
Browse files

Test: enable internal tests for shared Windows builds



Reviewed-by: default avatarRichard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/7462)

(cherry picked from commit 1901516a)
parent c39df745
Loading
Loading
Loading
Loading
+0 −3
Original line number Original line Diff line number Diff line
@@ -14,7 +14,4 @@ use OpenSSL::Test::Utils;


setup("test_internal_ctype");
setup("test_internal_ctype");


plan skip_all => "This test is unsupported in a shared library build on Windows"
    if $^O eq 'MSWin32' && !disabled("shared");

simple_test("test_internal_ctype", "ctype_internal_test");
simple_test("test_internal_ctype", "ctype_internal_test");
+0 −3
Original line number Original line Diff line number Diff line
@@ -13,7 +13,4 @@ use OpenSSL::Test::Utils;


setup("test_internal_asn1");
setup("test_internal_asn1");


plan skip_all => "This test is unsupported in a shared library build on Windows"
    if $^O eq 'MSWin32' && !disabled("shared");

simple_test("test_internal_asn1", "asn1_internal_test");
simple_test("test_internal_asn1", "asn1_internal_test");
+0 −3
Original line number Original line Diff line number Diff line
@@ -13,7 +13,4 @@ use OpenSSL::Test::Utils;


setup("test_internal_chacha");
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", "chacha");
simple_test("test_internal_chacha", "chacha_internal_test", "chacha");
+0 −3
Original line number Original line Diff line number Diff line
@@ -13,9 +13,6 @@ use OpenSSL::Test::Utils;


setup("test_internal_curve448");
setup("test_internal_curve448");


plan skip_all => "This test is unsupported in a shared library build on Windows"
    if $^O eq 'MSWin32' && !disabled("shared");

plan skip_all => "This test is unsupported in a no-ec build"
plan skip_all => "This test is unsupported in a no-ec build"
    if disabled("ec");
    if disabled("ec");


+0 −3
Original line number Original line Diff line number Diff line
@@ -13,7 +13,4 @@ use OpenSSL::Test::Utils;


setup("test_internal_modes");
setup("test_internal_modes");


plan skip_all => "This test is unsupported in a shared library build on Windows"
    if $^O eq 'MSWin32' && !disabled("shared");

simple_test("test_internal_modes", "modes_internal_test");
simple_test("test_internal_modes", "modes_internal_test");
Loading