Re-enable fuzzer testing in Windows

This commit is contained in:
Jay Berkenbilt 2019-06-21 13:21:17 -04:00
parent 1763957cbc
commit 2c81eec45e
2 changed files with 0 additions and 8 deletions

1
TODO
View File

@ -2,7 +2,6 @@ OSS-Fuzz
========
* Fix open issues from https://oss-fuzz.com
* Get fuzzer tests to pass in Windows
Next ABI
========

View File

@ -9,13 +9,6 @@ require TestDriver;
my $td = new TestDriver('fuzz');
if (($^O eq 'MSWin32') || ($^O eq 'msys'))
{
$td->emphasize("temporarily skipping fuzz tests in Windows");
$td->report(0);
exit(0);
}
my @files = glob("../qpdf_fuzzer_seed_corpus/*");
my $n_test_files = 27;
my $n_orig_files = 2559;