summaryrefslogtreecommitdiff
path: root/test/recipes
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2022-08-22 15:32:16 +0100
committerHugo Landau <hlandau@openssl.org>2022-09-26 08:01:55 +0100
commit508e087c4c9e0f6548816e0044022b257f179585 (patch)
treec0e0bd453c13213c4793330d6a4080b159619733 /test/recipes
parent28a5aa0cbdddfdf4d82a437d72407d4f52d4e54a (diff)
downloadopenssl-new-508e087c4c9e0f6548816e0044022b257f179585.tar.gz
QUIC Flow Control
Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19040)
Diffstat (limited to 'test/recipes')
-rw-r--r--test/recipes/70-test_quic_fc.t19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/recipes/70-test_quic_fc.t b/test/recipes/70-test_quic_fc.t
new file mode 100644
index 0000000000..ab92674883
--- /dev/null
+++ b/test/recipes/70-test_quic_fc.t
@@ -0,0 +1,19 @@
+#! /usr/bin/env perl
+# Copyright 2022 The OpenSSL Project Authors. All Rights Reserved.
+#
+# Licensed under the Apache License 2.0 (the "License"). You may not use
+# this file except in compliance with the License. You can obtain a copy
+# in the file LICENSE in the source distribution or at
+# https://www.openssl.org/source/license.html
+
+use OpenSSL::Test;
+use OpenSSL::Test::Utils;
+
+setup("test_quic_fc");
+
+plan skip_all => "QUIC protocol is not supported by this OpenSSL build"
+ if disabled('quic');
+
+plan tests => 1;
+
+ok(run(test(["quic_fc_test"])));