From f3b988dc29512d6575ff435e1ff7c1b66d97051e Mon Sep 17 00:00:00 2001 From: Max Ammann Date: Tue, 3 Oct 2023 12:22:02 +0100 Subject: Add provider fuzzer Test recipe 99-test_fuzz_provider.t added. Reviewed-by: Matt Caswell Reviewed-by: Neil Horman (Merged from https://github.com/openssl/openssl/pull/22964) --- test/recipes/99-test_fuzz_provider.t | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 test/recipes/99-test_fuzz_provider.t (limited to 'test') diff --git a/test/recipes/99-test_fuzz_provider.t b/test/recipes/99-test_fuzz_provider.t new file mode 100644 index 0000000..eab99b8 --- /dev/null +++ b/test/recipes/99-test_fuzz_provider.t @@ -0,0 +1,22 @@ +#!/usr/bin/env perl +# Copyright 2016-2023 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 strict; +use warnings; + +use OpenSSL::Test qw/:DEFAULT srctop_file/; +use OpenSSL::Test::Utils; + +my $fuzzer = "provider"; +setup("test_fuzz_${fuzzer}"); + +plan tests => 2; # one more due to below require_ok(...) + +require_ok(srctop_file('test','recipes','fuzz.pl')); + +fuzz_ok($fuzzer); -- cgit v1.1