Skip to content

Commit

Permalink
Don't run the QUIC client fuzzer if QUIC is disabled
Browse files Browse the repository at this point in the history
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Hugo Landau <hlandau@openssl.org>
(Merged from #22368)
  • Loading branch information
mattcaswell committed Oct 23, 2023
1 parent 49f5d95 commit f2c2857
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/recipes/99-test_fuzz_quic_client.t
Original file line number Diff line number Diff line change
Expand Up @@ -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'));
Expand Down

0 comments on commit f2c2857

Please sign in to comment.