mirror of https://github.com/google/oss-fuzz.git
ClusterFuzzLite: fix fuzzer (#11649)
Unblocks the fuzzer causing CI issues e.g. https://github.com/google/oss-fuzz/pull/11644 Fixes: https://github.com/google/oss-fuzz/issues/11648 Signed-off-by: David Korczynski <david@adalogics.com>
This commit is contained in:
parent
a40cd76e14
commit
c9f5d87321
|
@ -28,6 +28,9 @@ with atheris.instrument_imports():
|
||||||
|
|
||||||
REPO_PATH = '/src/curl'
|
REPO_PATH = '/src/curl'
|
||||||
PROJECT_NAME = 'curl'
|
PROJECT_NAME = 'curl'
|
||||||
|
|
||||||
|
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)
|
oss_fuzz_coverage = get_coverage.OSSFuzzCoverage(REPO_PATH, PROJECT_NAME)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue