summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2018-02-07 14:53:31 +0000
committerMatt Caswell <matt@openssl.org>2018-02-07 21:34:18 +0000
commit4af26979480a42e267ff686210bb63b1ebdd0eab (patch)
tree75911f3ea489d5de096358f1c1df78d1f2264d4f /test
parent04e3bb045f9b407d1ec681cfbeab4da8e53d750a (diff)
Don't run tls13encryptiontest on a shared Windows build
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)
Diffstat (limited to 'test')
-rw-r--r--test/recipes/90-test_tls13encryption.t3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/recipes/90-test_tls13encryption.t b/test/recipes/90-test_tls13encryption.t
index 63e62dbc51..3fb481081f 100644
--- a/test/recipes/90-test_tls13encryption.t
+++ b/test/recipes/90-test_tls13encryption.t
@@ -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");