summaryrefslogtreecommitdiff
path: root/test/recipes
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2023-05-11 13:50:21 +0200
committerHugo Landau <hlandau@openssl.org>2023-05-17 14:04:18 +0100
commit80b9eca279772185c32bb8d639af874b00217d6f (patch)
treea93e1aa4c331f3386bccaf841a707037c28d0dee /test/recipes
parentbbc9754026e815429b55c92cf2a70e4ac59464cf (diff)
downloadopenssl-new-80b9eca279772185c32bb8d639af874b00217d6f.tar.gz
Add test for handling NEW_CONNECTION_ID frame
Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/20892)
Diffstat (limited to 'test/recipes')
-rw-r--r--test/recipes/90-test_quicfaults.t5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/recipes/90-test_quicfaults.t b/test/recipes/90-test_quicfaults.t
index f4bd8ea9b7..addac8fc0a 100644
--- a/test/recipes/90-test_quicfaults.t
+++ b/test/recipes/90-test_quicfaults.t
@@ -20,7 +20,10 @@ use lib bldtop_dir('.');
plan skip_all => "QUIC protocol is not supported by this OpenSSL build"
if disabled('quic');
-plan tests => 1;
+plan tests => 2;
ok(run(test(["quicfaultstest", srctop_dir("test", "certs")])),
"running quicfaultstest");
+
+ok(run(test(["quic_newcid_test", srctop_dir("test", "certs")])),
+ "running quic_newcid_test");