summaryrefslogtreecommitdiff
path: root/test/recipes
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2022-07-22 13:08:38 +0100
committerTomas Mraz <tomas@openssl.org>2022-09-02 10:03:55 +0200
commitec279ac21105a85d9f11eed984eb64405811425d (patch)
treef793d4635eece923228d2a9d91aaaa91d134f612 /test/recipes
parentfc2be2d07acc0cfe954320c2491b8c5461cbef09 (diff)
downloadopenssl-new-ec279ac21105a85d9f11eed984eb64405811425d.tar.gz
QUIC Demuxer and Record Layer (RX Side)
Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/18949)
Diffstat (limited to 'test/recipes')
-rw-r--r--test/recipes/70-test_quic_record.t19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/recipes/70-test_quic_record.t b/test/recipes/70-test_quic_record.t
new file mode 100644
index 0000000000..3fd782000c
--- /dev/null
+++ b/test/recipes/70-test_quic_record.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_record");
+
+plan skip_all => "QUIC protocol is not supported by this OpenSSL build"
+ if disabled('quic');
+
+plan tests => 1;
+
+ok(run(test(["quic_record_test"])));