fuzz.pl 678 B

1234567891011121314151617181920212223242526
  1. # Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved.
  2. #
  3. # Licensed under the Apache License 2.0 (the "License"). You may not use
  4. # this file except in compliance with the License. You can obtain a copy
  5. # in the file LICENSE in the source distribution or at
  6. # https://www.openssl.org/source/license.html
  7. use strict;
  8. use warnings;
  9. use OpenSSL::Glob;
  10. use OpenSSL::Test qw/:DEFAULT srctop_dir/;
  11. sub fuzz_ok {
  12. die "Only one argument accepted" if scalar @_ != 1;
  13. my $f = $_[0];
  14. my $d = srctop_dir('fuzz', 'corpora', $f);
  15. SKIP: {
  16. skip "No directory $d", 1 unless -d $d;
  17. ok(run(fuzz(["$f-test", $d])), "Fuzzing $f");
  18. }
  19. }
  20. 1;