summaryrefslogtreecommitdiff
path: root/test/recipes
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2022-11-29 11:26:08 +0000
committerMatt Caswell <matt@openssl.org>2023-01-24 17:16:29 +0000
commit4e3a55fd14cb4424fd62516345d918cdf0d9cdcc (patch)
tree34182d4cac374cde52a242d1b04ea14c2f02d59d /test/recipes
parentc28f1a8bb9ccfecb76bcf3b7987e2a526b427bca (diff)
downloadopenssl-new-4e3a55fd14cb4424fd62516345d918cdf0d9cdcc.tar.gz
Add QUIC-TLS server support
Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19748)
Diffstat (limited to 'test/recipes')
-rw-r--r--test/recipes/70-test_quic_tserver.t8
1 files changed, 5 insertions, 3 deletions
diff --git a/test/recipes/70-test_quic_tserver.t b/test/recipes/70-test_quic_tserver.t
index 76c24c36c5..4ff2d208b6 100644
--- a/test/recipes/70-test_quic_tserver.t
+++ b/test/recipes/70-test_quic_tserver.t
@@ -6,14 +6,16 @@
# in the file LICENSE in the source distribution or at
# https://www.openssl.org/source/license.html
-use OpenSSL::Test;
+use OpenSSL::Test qw/:DEFAULT srctop_file/;
use OpenSSL::Test::Utils;
-setup("test_quic_txp");
+setup("test_quic_tserver");
plan skip_all => "QUIC protocol is not supported by this OpenSSL build"
if disabled('quic');
plan tests => 1;
-ok(run(test(["quic_tserver_test"])));
+ok(run(test(["quic_tserver_test",
+ srctop_file("test", "certs", "servercert.pem"),
+ srctop_file("test", "certs", "serverkey.pem")])));