Don't run tls13encryptiontest on a shared Windows build
authorMatt Caswell <matt@openssl.org>
Wed, 7 Feb 2018 14:53:31 +0000 (14:53 +0000)
committerMatt Caswell <matt@openssl.org>
Wed, 7 Feb 2018 21:34:18 +0000 (21:34 +0000)
tls13encryptiontest is an "internal" test. As with all the other internal
tests it should not be run on a shared native Windows build.

[extended tests]

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

test/recipes/90-test_tls13encryption.t

index 63e62dbc513b4c23d4cc1af65f3d2efeeae865fe..3fb481081f8767fa6bb5634567ece17dd657a701 100644 (file)
@@ -15,6 +15,9 @@ 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");