Skip to content

Commit

Permalink
ClusterFuzzLite: fix fuzzer (google#11649)
Browse files Browse the repository at this point in the history
Unblocks the fuzzer causing CI issues e.g.
google#11644

Fixes: google#11648

Signed-off-by: David Korczynski <[email protected]>
  • Loading branch information
DavidKorczynski authored Feb 29, 2024
1 parent a40cd76 commit c9f5d87
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .clusterfuzzlite/coverage_atheris_fuzzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@

REPO_PATH = '/src/curl'
PROJECT_NAME = 'curl'
oss_fuzz_coverage = get_coverage.OSSFuzzCoverage(REPO_PATH, PROJECT_NAME)

with mock.patch('get_coverage._get_oss_fuzz_fuzzer_stats_dir_url',
return_value="randomurl"):
oss_fuzz_coverage = get_coverage.OSSFuzzCoverage(REPO_PATH, PROJECT_NAME)


def TestOneInput(data):
Expand Down

0 comments on commit c9f5d87

Please sign in to comment.