Latest update
This commit is contained in:
@@ -14,7 +14,4 @@ use OpenSSL::Test::Utils;
|
||||
|
||||
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");
|
||||
@@ -13,7 +13,4 @@ use OpenSSL::Test::Utils;
|
||||
|
||||
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");
|
||||
@@ -13,7 +13,4 @@ use OpenSSL::Test::Utils;
|
||||
|
||||
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");
|
||||
@@ -13,9 +13,6 @@ use OpenSSL::Test::Utils;
|
||||
|
||||
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"
|
||||
if disabled("ec");
|
||||
|
||||
|
||||
@@ -13,7 +13,4 @@ use OpenSSL::Test::Utils;
|
||||
|
||||
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");
|
||||
@@ -13,7 +13,4 @@ use OpenSSL::Test::Utils;
|
||||
|
||||
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", "poly1305");
|
||||
@@ -13,7 +13,4 @@ use OpenSSL::Test::Utils;
|
||||
|
||||
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", "siphash");
|
||||
@@ -13,7 +13,4 @@ use OpenSSL::Test::Utils;
|
||||
|
||||
setup("test_internal_sm2");
|
||||
|
||||
plan skip_all => "This test is unsupported in a shared library build on Windows"
|
||||
if $^O eq 'MSWin32' && !disabled("shared");
|
||||
|
||||
simple_test("test_internal_sm2", "sm2_internal_test", "sm2");
|
||||
@@ -14,7 +14,4 @@ use OpenSSL::Test::Utils;
|
||||
|
||||
setup("test_internal_sm4");
|
||||
|
||||
plan skip_all => "This test is unsupported in a shared library build on Windows"
|
||||
if $^O eq 'MSWin32' && !disabled("shared");
|
||||
|
||||
simple_test("test_internal_sm4", "sm4_internal_test", "sm4");
|
||||
@@ -13,7 +13,4 @@ use OpenSSL::Test::Utils;
|
||||
|
||||
setup("test_internal_ssl_cert_table");
|
||||
|
||||
plan skip_all => "This test is unsupported in a shared library build on Windows"
|
||||
if $^O eq 'MSWin32' && !disabled("shared");
|
||||
|
||||
simple_test("test_internal_ssl_cert_table", "ssl_cert_table_internal_test");
|
||||
@@ -13,7 +13,4 @@ use OpenSSL::Test::Utils;
|
||||
|
||||
setup("test_internal_x509");
|
||||
|
||||
plan skip_all => "This test is unsupported in a shared library build on Windows"
|
||||
if $^O eq 'MSWin32' && !disabled("shared");
|
||||
|
||||
simple_test("test_internal_x509", "x509_internal_test");
|
||||
@@ -15,9 +15,6 @@ use OpenSSL::Test::Utils;
|
||||
|
||||
setup("test_rdrand_sanity");
|
||||
|
||||
plan skip_all => "This test is unsupported in a shared library build on Windows"
|
||||
if $^O eq 'MSWin32' && !disabled("shared");
|
||||
|
||||
# We also need static builds to be enabled even on linux
|
||||
plan skip_all => "This test is unsupported if static builds are not enabled"
|
||||
if disabled("static");
|
||||
|
||||
@@ -28,7 +28,7 @@ map { s/\^// } @conf_files if $^O eq "VMS";
|
||||
|
||||
# We hard-code the number of tests to double-check that the globbing above
|
||||
# finds all files as expected.
|
||||
plan tests => 27; # = scalar @conf_srcs
|
||||
plan tests => 28; # = scalar @conf_srcs
|
||||
|
||||
# Some test results depend on the configuration of enabled protocols. We only
|
||||
# verify generated sources in the default configuration.
|
||||
|
||||
@@ -15,9 +15,6 @@ setup($test_name);
|
||||
plan skip_all => "$test_name is not supported in this build"
|
||||
if disabled("tls1_3");
|
||||
|
||||
plan skip_all => "This test is unsupported in a shared library build on Windows"
|
||||
if $^O eq 'MSWin32' && !disabled("shared");
|
||||
|
||||
plan tests => 1;
|
||||
|
||||
ok(run(test(["tls13encryptiontest"])), "running tls13encryptiontest");
|
||||
Reference in New Issue
Block a user