From: Hugo Landau Date: Mon, 5 Feb 2024 17:35:33 +0000 (+0000) Subject: QUIC RADIX: Add recipe X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a6f8370dab1e0af0e4a807018a60cc600d4bce39;p=thirdparty%2Fopenssl.git QUIC RADIX: Add recipe Reviewed-by: Neil Horman Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/23487) --- diff --git a/test/recipes/70-test_quic_radix.t b/test/recipes/70-test_quic_radix.t new file mode 100644 index 00000000000..589ffc302e8 --- /dev/null +++ b/test/recipes/70-test_quic_radix.t @@ -0,0 +1,21 @@ +#! /usr/bin/env perl +# Copyright 2024 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 qw/:DEFAULT srctop_file/; +use OpenSSL::Test::Utils; + +setup("test_quic_radix"); + +plan skip_all => "QUIC protocol is not supported by this OpenSSL build" + if disabled('quic'); + +plan tests => 1; + +ok(run(test(["quic_radix_test", + srctop_file("test", "certs", "servercert.pem"), + srctop_file("test", "certs", "serverkey.pem")])));