summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2023-10-19 14:54:58 +0100
committerMatt Caswell <matt@openssl.org>2023-10-23 10:08:22 +0100
commitf2c2857accd5650cbcb0767019abd75925b51a3e (patch)
tree5f10889f95540d25513069c6ad6aca75aa2bab64 /test
parent49f5d95c052130882842a9df2b988ae6303c14bd (diff)
Don't run the QUIC client fuzzer if QUIC is disabled
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Hugo Landau <hlandau@openssl.org> (Merged from https://github.com/openssl/openssl/pull/22368)
Diffstat (limited to 'test')
-rw-r--r--test/recipes/99-test_fuzz_quic_client.t3
1 files changed, 3 insertions, 0 deletions
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'));