You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This follows #3. To be able to fix bugs discovered by new before it hits openssl/openssl, a test build + run should be made in PRs done here. I really can't imagine it being very hard, if you consider running the related OpenSSL test recipes with a corpora that's not in the OpenSSL source tree. This patch in OpenSSL should help:
diff --git a/test/recipes/fuzz.pl b/test/recipes/fuzz.pl
index 3f03eef4f7..549970d137 100644
--- a/test/recipes/fuzz.pl+++ b/test/recipes/fuzz.pl@@ -8,6 +8,7 @@
use strict;
use warnings;
+use File::Spec;
use OpenSSL::Glob;
use OpenSSL::Test qw/:DEFAULT srctop_dir/;
@@ -15,7 +16,8 @@ sub fuzz_ok {
die "Only one argument accepted" if scalar @_ != 1;
my $f = $_[0];
- my $d = srctop_dir('fuzz', 'corpora', $f);+ my $d = ENV{FUZZ_CORPORA} // srctop_dir('fuzz', 'corpora');+ $d = File::Spec->catdir($d, $f);
SKIP: {
skip "No directory $d", 1 unless -d $d;
The text was updated successfully, but these errors were encountered:
This follows #3. To be able to fix bugs discovered by new before it hits openssl/openssl, a test build + run should be made in PRs done here. I really can't imagine it being very hard, if you consider running the related OpenSSL test recipes with a corpora that's not in the OpenSSL source tree. This patch in OpenSSL should help:
The text was updated successfully, but these errors were encountered: