From f2c2857accd5650cbcb0767019abd75925b51a3e Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Thu, 19 Oct 2023 14:54:58 +0100 Subject: [PATCH] Don't run the QUIC client fuzzer if QUIC is disabled Reviewed-by: Tomas Mraz Reviewed-by: Hugo Landau (Merged from https://github.com/openssl/openssl/pull/22368) --- test/recipes/99-test_fuzz_quic_client.t | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/recipes/99-test_fuzz_quic_client.t b/test/recipes/99-test_fuzz_quic_client.t index 2a2849035a..a22d0d0c32 100644 --- a/test/recipes/99-test_fuzz_quic_client.t +++ b/test/recipes/99-test_fuzz_quic_client.t @@ -15,6 +15,9 @@ use OpenSSL::Test::Utils; my $fuzzer = "quic-client"; setup("test_fuzz_${fuzzer}"); +plan skip_all => "This test requires quic support" + if disabled("quic"); + plan tests => 2; # one more due to below require_ok(...) require_ok(srctop_file('test','recipes','fuzz.pl'));